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?