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

Popular posts from this blog

jQuery clickable div with working mailto link inside -

java - Getting corefrences with Standard corenlp package -

WPF: binding viewmodel property of type DateTime to Calendar inside ItemsControl -