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:
try this, i hope this helps 🙂