I am receiving this Uncaught TypeError on a new website I am creating, but I can’t work out what is causing the error.
I have recreated the issue at the link below, if you take a look at your browsers JS console you’ll see the error occurring, but nothing else happens.
Code:
$('.newsitem').hover(
$(this).children('.text').animate({ height: '34px' }),
$(this).children('.text').animate({ height: '0px' }));
Be sure to wrap those in asynchronous callbacks: