I have the following error and I canīt figure it out, please help?
Line 143, Column 158: end tag for "SCRIPT" omitted, but its declaration does not permit this
obal/preMainGreen.gif" alt=""> </div>', onHide: function(h) { if ($.browser.c
✉
You forgot to close a tag, or
you used something inside this tag that was not allowed, and the validator is complaining that the tag should be closed before such content can be allowed.
The next message, "start tag was here" points to the particular instance of the tag in question); the positional indicator points to where the validator expected you to close the tag.
Line 140: start tag was here
><script type="text/javascript">
This is the javascript:
<script type="text/javascript">
//<![CDATA[
$().ready(function(){
$('#contactUsModal').jqm({closeClass: 'lnkClose', ajaxText:}) '<div class="loaderFull"> <img src="http://example.com/img/global/preMainGreen.gif" alt=""> </div>', onHide: function(h) { if ($.browser.chrome || $.browser.msie) $('object').show(); h.w.html(''); h.w.hide(); h.o.remove(); }, onShow: function(h) { if ($.browser.chrome || $.browser.msie) $('object').hide(); h.w.show(); h.w[0].ajaxSuccess = false; }, trigger: '#triggerContactUsModal', ajax: '/tickets/contactoptions/modal', modal: true;
});
//]></script>
[edited by: Fotiman at 1:51 pm (utc) on Feb 23, 2010]
[edit reason] Examplified URL [/edit]