Why can't I hang the handler on the jcarousel
carousel control keys?
$('.jcarousel-next').click(function(){ alert('Hello'); });
Why can't I hang the handler on the jcarousel
carousel control keys?
$('.jcarousel-next').click(function(){ alert('Hello'); });
Apparently you are trying to hang an event on an object that is not yet in the dom model, so the subscription does not go. Well, to check just before you hang .click
.click .click
$('.jcarousel-next')
to the console
Source: https://ru.stackoverflow.com/questions/506272/
All Articles
.click
.click,.click
$('.jcarousel-next')
to the console - Vasily Barbashev