I tried a lot of ways but non of them worked. For example that one works:
$('#iframeid').ready(
function()
{
alert('Hello');
}
);
but following doesn't (alerts hello but do not focus.)
$('a:link').click(
function()
{
alert('Hello');
var iframeRef = document.getElementById("iframeid");
$(iframeRef).focus();
$(iframeRef).contents().find("#smthing").focus();
});
Help me work it out please.