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

#78892
jamygolden
Member

CSS:

Code:
a { display: block }

start off your jQuery with:

Code:
$(document).ready(function(){
$(“a”).hide();
// insert other script here
});