I have the following jQuery code which works as just the class, but the :hover causes it not to work.
$('.dd_question:hover').css('border','1px dashed #333333');
Is there some special code I can use inside th $() method? Or is :hover simply not allowd?
$('.dd_question').hover(function() { $(this).css('border','1px dashed #333333'); });