Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript [jQuery] Make show/hide on anchor tags Re: [jQuery] Make show/hide on anchor tags

#78882
jamygolden
Member

It’s only displaying inline because that is what it’s original display was. If you change the display to block:

Code:
a { display: block; }

Then it will display as a block again – once it is shown through show().