What are the other operation to show a calendar if Js is not working properly?

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 :grinning:

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

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

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.