DooBox Form not working…Help…
http://ibize.com/ttt
Got it…thanks so much
Look at this entry first causing a syntax error, the errors are having a knock on effect causing the form and anything else using javascript on the page to fail :
var footer_text = 'Powered by Taslyn's Twisted Treats';
Change it to:
var footer_text = 'Powered by Taslyns Twisted Treats';
or:
var footer_text = 'Powered by Taslyn%27s Twisted Treats';
or:
var footer_text = "Powered by Taslyn's Twisted Treats";
Note how the single quote in Taslyn’s currently ends the string variable declaration to early because it’s wrapped in single quotes as well.
2 Likes
Thanks for the heads up
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.