Ahmed Atia
Ahmed Atia

Reputation: 17970

How to give focus to an iFrame in firefox just page is loaded?

How to give focus to an iFrame in firefox just page is loaded?

FYI: I tried focus() javascript & jQuery functions to do this, works properly for XP, but doesn't work for Windows 7?
Also, how does foucs() functionality differs from platform to another one?

Upvotes: 2

Views: 172

Answers (1)

jAndy
jAndy

Reputation: 236182

try to trigger the focus or focusin event on page/dom ready.

$(document).ready(function(){
  $('iframe').trigger('focusin');
});

Upvotes: 1

Related Questions