sassy_luvr24
New Member
I am using an iFrame to load a page whose url is specified in a text box. Here is my code :\[code\]<iframe id="import_url_iframe"></iframe>\[/code\]I use jQuery change event to get the change of the url in the text box :\[code\] $("#wiki_form_url").change(function(){ var value = http://stackoverflow.com/questions/15490144/$(this).val(); $("#import_url_iframe").attr("src", value); });\[/code\]This works fine if I click outside after specifying the url in the text box. But, I need to make this so when I write the url in the text box, it should show the page in iFrame (without any click outside). How can I accomplish that ?