Re: [PHP] LightBox click detection
[email protected] (Tamara Temple)
| Newsgroups | php.general |
|---|---|
| Message-ID | <[email protected]> |
Marc Guay <[email protected]> wrote: > $('.lightbox-image-class').click(function(){ > $.post('ajax.php', {click: true}); > }); Do javascript DOM events stack? If they do, this is definitely the simplest way to go. If they don't, you need to capture the previous click handler and call it.