vngx
May 1, 2015, 5:32am
1
Hi there
I have a requirement of showing datepicker in my application I am using JQuery
So I use something like
$(“#MyElement ”).datePicker();
But When JavaScript is disabled or not working properly(Slow Internet Connections)
I want to show calendar at that time also.
What are the options for these?
enable js or get a faster internet connection
There should be a way to add conditions in meta tag area (i think). So if JS is disabled load calendar css. Then use html/css calendars like
A calendar is a system of organizing days for social, religious, commercial, or administrative purposes and therefore makes it essential element for web application. I have collected 19 html calenders for your inspiration and might be useful for your...
I think it’s more work than its worth though. If my targeted audience dont want to use js, then its their loss - they wont be able to use my web (thats the selfish way i see it!)
Hi there vngx,
simply use javascript to hide any items that you do not want displayed
when it is enabled or working properly(Fast internet Connections).
[code]
untitled document
.hidden {
display:none;
}
This will be diplayed if javascript is disabled or not working.
[/code]
coothead
1 Like
system
Closed
July 31, 2015, 5:01pm
4
This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.