I have this script:
<script>
$(document).ready(function() {
$('.block-link').click(function() {
$('body').addClass("gallery-on");
});
$('body').delegate('.ps-toolbar-close', 'click', function() {
$('body').removeClass("gallery-on");
});
});
</script>
The script is supposed to add the class .gallery-on to the body when i click on any .block-link.
The .ps-toolbar-close element is generated through a plugin (pretty good btw!) that create a modal lightbox when any .block-link is clicked.
The first part of the script is working, the second is supposed to remove the .gallery-on class from the body, but it just close the lightbox and let the body class where it is.
What am i doing wrong? i'm a beginner with javascript and jquery unfortunately..
My best guess is that since .ps-toolbar-close is not yet present in the document when the page loads, no click handler is placed for the second part of the script, though i thought that .delegate() was able to handle not yet existing elements, am i wrong?
Thanks for any help!
clickfunction is just supposed to add the.gallery-onclass whenever a.block-linkelement is clicked. Those element are already present in the document. – Gruber Oct 31 '12 at 23:41