vote up 0 vote down star
1

Hello, I have this bit of jQuery at the top of my page (used for a simple image carousel):

$(document).ready(function(){	
	$("#slider").easySlider({
		prevText:'<div id="backarrow">Back</div>',
		nextText:'<div id="nextarrow">View Other Projects</div>',
		orientation:'horizontal'
	});
});

however, I can't get it to validate XHTML strict:

Line 12, Column 33: document type does not allow element "div" here

Any ideas?

flag

80% accept rate

2 Answers

vote up 9 vote down check
<script type="text/javascript">
/* <![CDATA[ */
$(document).ready(function(){   
    $("#slider").easySlider({
            prevText:'<div id="backarrow">Back</div>',
            nextText:'<div id="nextarrow">View Other Projects</div>',
            orientation:'horizontal'
    });
});
/* ]]> */
</script>

This tells the validator to interpret the script as character data, not markup, and thus it won't parse the structure of the CDATA block. Wikipedia has more info.

link|flag
1  
Awesome! Thanks – Tylor May 27 at 3:19
1  
dorward.me.uk/www/comments-cdata explains the history of this. – David Dorward May 27 at 9:08
vote up -1 vote down

It has nothing to with JQuery. Just surround the JS with comments (CDATA as ceejayoz gave should work too).

link|flag
Comments, if the XHTML is processed as XHTML, will comment out the script so it will not run. Do NOT use them for this. – David Dorward May 27 at 9:29
David, I just tested in Firefox 3 with a XHTML 1.0 Strict (fully validating) page containing : <script type="text/javascript"> <!-- alert("foo"); --> </script> You're simply wrong. – Matthew Flaschen May 27 at 9:47
Did you serve the document as application/xhtml+xml? I'm betting not. If you serve it as text/html then it will be processed as HTML not XHTML. The rules for HTML are not the same as those for XHTML. – David Dorward May 27 at 10:30
I stand corrected. When served as XML (note, this is not required to be valid XHTML), the script will not run. – Matthew Flaschen May 27 at 11:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.