Here is the error as reported in the FF javascript console:
Error: missing ) after argument list
Source File:
http://www.berkshiretkd.co.uk/calender.php?month=August
Line: 1, Column: 38
Source Code:
writetxt(' <b>Event:</b> Mr Bannister's Preliminary <BR> <b>Date:</b> 13 * August <br> <b>Venue:</b> Yiewsley <br> <b>Start Time:</b> 11 <br><b> Decription:</b> Part 1 of Test to Become 3rd Degree Black Belt')
In javascript, that would be corrected by escaping the apostrophe:
Code:
writetxt(' <b>Event:</b> Mr Bannister\'s Preliminary <BR> <b>Date:</b> 13 * August <br> <b>Venue:</b> Yiewsley <br> <b>Start Time:</b> 11 <br><b> Decription:</b> Part 1 of Test to Become 3rd Degree Black Belt')
I'm not sure how this will play out with the PHP involved.
Bookmarks