Show div #id on click with jQuery

The problem you’re having is that the event-handlers are being bound before the elements are present in the DOM, if you wrap the jQuery inside of a $(document).ready() then it should work perfectly well: An alternative is to place the <script></script> at the foot of the page, so it’s encountered after the DOM has been loaded and ready. To … Read more