Search code examples
javascriptasp.netiframeasp.net-ajaxsrc

Is it possible to change the source of an iframe without page postback?


I just wanted to know, is it possible to change the source of an iframe without page postback? if yes, then how.


Solution

  • Using jquery.attr() method, you can change the src parameter.

    $("#myifrm").attr("src","your url here");
    

    To see a working sample, take a look at this: http://jsfiddle.net/YCDtj/