View previous topic :: View next topic |
Author |
Message |
mconti
Joined: 22 Jul 2011 Posts: 1 Location: Sydney Australia
|
Posted: Wed Nov 30, 2011 5:11 pm Post subject: Date selector not working anymore with Windows XP |
|
|
Hi,
my date selector doesn't work anymore with "Windows XP and https" but still works with Vista and 7 or with http. Customer is freaking out as he is on high season right now.
check this with https
https://www.lamrocklodge.com/booking.htm
and with http
http://www.lamrocklodge.com/booking.htm
Any advice? I'd like to keep https. _________________ Adrenalyn Web Marketing |
|
Back to top |
|
|
mycontac Site Admin
Joined: 31 Dec 2003 Posts: 2860
|
Posted: Thu Dec 01, 2011 10:13 am Post subject: Reply |
|
|
You have a couple of options to fix this.
1. Look at the source code for your form and change on the occurrences on the http:// to https:// on the form residing on the https:// page:
This:
Code: |
<SCRIPT LANGUAGE="JavaScript" SRC="http://www.mycontactform.com/js/CalendarPopup.js"></SCRIPT> |
Should say:
Code: |
<SCRIPT LANGUAGE="JavaScript" SRC="https://www.mycontactform.com/js/CalendarPopup.js"></SCRIPT> |
This:
Code: |
<img src="http://www.mycontactform.com/js/img/calendar.gif" alt="Select Date" border="0" style="vertical-align: bottom;" /> |
Should Say:
Code: |
<img src="https://www.mycontactform.com/js/img/calendar.gif" alt="Select Date" border="0" style="vertical-align: bottom;" /> |
Alternatively, you can login to your account > Get HTML > and update the code on your site. This will fix your issue.
Nick Ladd
myContactForm.com |
|
Back to top |
|
|
|