I have the following function that loads "mypage.htm" into "#flowplayer-content".
This works
$('.small-images a').bind("click", function(event) {
var uri = "mypage.htm";
$("#flowplayer-content").load(uri, null, function(responseText, textStatus, XMLHttpRequest) {
});
event.preventDefault();
});
"mypage.htm" contains ahref. I want to call this event.
$("a").live("click", function() {
alert("handler hit");
});
but i can't seem to hit it