Greetings!
I have an onClick script written within an ASP page that, when the link is clicked, pops up a calendar so the user can select a specific date. There is a start date and an end date that the user can select and these variables are passed to a sql query to pull class events from the database for the class calendar.
It works fine in IE 6.0...just not in Mozilla. This is the first time I have used javasript in a long time, so any help would be greatly appreciated. The code that works in IE is below:
Thanks!
GC
I have an onClick script written within an ASP page that, when the link is clicked, pops up a calendar so the user can select a specific date. There is a start date and an end date that the user can select and these variables are passed to a sql query to pull class events from the database for the class calendar.
It works fine in IE 6.0...just not in Mozilla. This is the first time I have used javasript in a long time, so any help would be greatly appreciated. The code that works in IE is below:
Code:
<td><a href="javascript:void(0);" title="Click here to choose a date" onClick="cal.select(document.forms.month_view.startDate,'anchor1',true); return false;" name="anchor1" id="a2"><b><u><font color="#0000FF">Start Date:</font></u></b></a></td>
<td><input type="text" name="startDate" value="<%= "" & startDate & "" %>" class="textfield" readonly="readonly"></td>
Thanks!
GC