jquery - Cool HTML5/CSS3 tables? -
there code saw showed 3 products , product specs in table form, 1 right next other, , when hover on product, kinda popped. might have been jquery, opposed html5 or css3 i'm wondering if knows i'm talking about, , can find code?
you can add desired css style elemet id, "popped".
and script:
$(".product").hover( function () { $(this).attr('id','popped');} function () { $(this).attr('id','');} );
, "product" class of product tabs.
Comments
Post a Comment