I cannot seem to get this jQuery animation working for applying a border to an image on mouseenter:
You have some typos in your code
.mousenter should be .mouseenter
didnt close the apostrophe in both 'borderColor. change them to 'borderColor'
$('div img').mouseenter(function(){ $(this).css("border", "0px solid #f37736").animate({ 'borderWidth': '4px', 'borderColor': '#f37736' },500); }).mouseleave(function(){ $(this).animate({ 'borderWidth':'0px', 'borderColor':'#f37736' },500); });