Hello I am using this jquery code
onclick="jQuery('.hidden').show()"
to show the class labeled .hidden
this is what the class looks like :
.hidden { display:none}
the issue is when it displays the class its a display:block; I would like it to display it as display:inline; that way its on the same line as the text that comes before. any help would be appreciated been going crazy I googled almost everything related to it but nothing guided me to the right path.
you could append an explicit css attribute to the element:
onclick="jQuery('.hidden').css('display','inline');"
try this, i hope this helps :)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With