Hi,
You have a syntax error in your file "custom.js".
This is included in line 257 of your page:
HTML Code:
<script type="text/javascript" src="http://www.organicwebdesigns.co.uk/wp-content/themes/eBusiness/js/custom.js"></script>
This is the contents of this file:
Code JavaScript:
var A = jQuery.noConflict();
jQuery(function(A){
A(".slider-link-1, .slider-link-2, .slider-link-3, .slider-link-4,").hover(function(){
A(this).animate({
marginTop: "-10px"
}, 250);
}, function(){
A(this).animate({
marginTop: "0px"
}, 250);
});
});
The problem is in this line (hence your warning message):
Code JavaScript:
A(".slider-link-1, .slider-link-2, .slider-link-3, .slider-link-4,").hover(function(){
Remove the final comma after .slider-link-4 and you'll be good to go.
Happy Christmas!
Bookmarks