I've added a simple jquery slideDown function to a client's website but they want to add some style via javascript so that for anyone with JS disabled they still see the content.
<script>
$(".click").click(function () {
$(".morecontent").slideToggle("slow");
});
</script>
.morecontent is currently set to display:none via the stylesheet, so basically I want to include this style in the script as oppose to the stylesheet
No JS = display:inline. When JS is enabled:set display:none, then show the element using slideToggle. Read the bottom of my answer for a more clear description. – Rob W Nov 10 '11 at 9:36