I have a jQuery slider filled with movies and I would like jQuery to stop the slider on a click event for either the embed / object. I have tried to no avail to get this to work. I have tried this:
$("embed").click(function() {
alert('Handler for .click() called.');
})
$("object").click(function() {
alert('Handler for .click() called.');
})
Neither works for the HTML tags embed or object. Any suggestions?