I have this jQuery bit 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 cannot get it to check the strict XHTML line:
Row 12, column 33: document type don't let the div element here
Any ideas?
Tylor source
share