I've got a page that is using jQuery.
$("#start_date").val()
The above code returns the value of an box just fine on the Apache server. However, in IIS, it returns "undefined."
Are there special setup considerations that are needed for an IIS deployment of jQuery?
EDIT #1
I might also point out that this is using the jQuery datepicker. Other fields on the page which are just standard text boxes work fine.
EDIT #2
Ok, so I narrowed this down a bit more. The tag for this date is defined like this:
id="add_start_date" name="start_date"
When I change it to this:
id="start_date" name="start_date"
It works fine. Why the difference between the servers? It doesn't seem like this should make any difference at all.