[jQuery] yet another frames-related problem

[jQuery] yet another frames-related problem


I did this:
$('body').append('<iframe name="myFrameName3" src='... etc...
now I want to attach a click event to something inside that frame.
Does anyone know why the context parameter of the click() below does
not work? I can't get the alert to show up.
$('#someDiv', top.frames['myFrameName3'].document).click(function(){
alert( $(this).attr('id') );
});