I've got this in the HTML output of my page:
<script type="text/javascript">
jQuery(document).ready(function($) {
$('#prod_img').bjqs({
'height' : 350,
'width' : 350,
'nexttext' : "<img style='position:relative;left:25px;' src='/images/buttons/btn_pop_next.gif' alt='next' />",
'prevtext' : "<img style='position:relative;left:-25px;' src='/images/buttons/btn_pop_previous.gif' alt='previous' />",
'showmarkers' : false,
'responsive' : true
});
});
</script>
The good ol' Validator says I can't have IMG tags here. Nor does putting a "<div>" before/after help.
I'm not even sure what to Google for this ... it could be simply because it's after 4PM here 😃
Thoughts? Do I care if the validator craps out only for this one?