I'm hiding a div
using display:none
and this div
only shows when we click on + icon. but if JavaScript is disabled then I want to show that div
by default on. How to do this?
I can't post whole code for now.
jQuery(document).ready(function() {
jQuery('a#toggle').click(function() {
jQuery('#map').slideToggle(400);
return false;
});
CSS
#map {display:none}