jquery onclick for expanding text content on the right?
- by Jon Snow
Hi I am trying to achieve the same effect as it is on hover on my fiddle,
I would like to use jquery click/toggle to expand the content instead of seeing it on hover
I am trying the basic addClass with jquery/css but somehow it's breaking off and cannot figure it out how to work properly
Would appreciate any help or advice on the following, thanks a lot in advance,
here is the fiddle i created with the jquery I am using
$(document).ready(function(){
$(".gamewrapper").click(function(){
$(".gamewrapper").addClass("expand");
});
});
Thanks