i have this setup:
<script type="text/javascript">
$(document).ready(function() {
$("#click_me_link").click(function () {
$("#link_more").show("slow");
});
});
</script>
<div id="click_me_link"><img src="/images/banner_bottom.png"></div>
<div id="link_more" style="width: 530px; height: 66px; display: none;">
test
</div>
if i click on the click_me_link it wont display the hidden div. if i run $("#link_more").show("slow"); in the console it works
any idea?
thanks
semicolon fixed, still doesn’t work
It’s working here http://jsfiddle.net/imoda/eXPW5/
You’re missing a
;after the height propertyNot sure if that’s causing your problem as I can’t seem to replicate it, but it’s no doubt something to fix.