I'm trying to implement the jQuery Slider in a new CMSMS site but keep getting this error message:
string(139) "Smarty error: [in tpl_head:18 line 18]: syntax error: unrecognized tag: $("#wrapSlide").easySlider(); (Smarty_Compiler.class.php, line 446)" string(111) "Smarty error: [in tpl_head:18 line 18]: syntax error: unrecognized tag '' (Smarty_Compiler.class.php, line 590)"
Any ideas on how to fix this?
J Query Slider [solved]
-
- Forum Members
- Posts: 22
- Joined: Wed Jun 21, 2006 3:16 pm
J Query Slider [solved]
Last edited by tyman00 on Wed Jun 24, 2009 3:03 pm, edited 1 time in total.
Re: J Query Slider
any scripts on a template or content block that uses "{" or "}" must be enclosed with a {literal} tag...
example
Regards
G
example
Code: Select all
{literal}
<__script__ type="text/javascript>
...
</__script>
{/literal}
G
-
- Forum Members
- Posts: 22
- Joined: Wed Jun 21, 2006 3:16 pm
Re: J Query Slider
That worked perfectly. Thank you for the reminder.