I want to load an iframe on click, this is what I have so far:
$(\"#frame\").click(function () { $(\'this\').load(\"http://www.google.com/\"); });
$("#button").click(function () { $("#frame").attr("src", "http://www.example.com/"); });
HTML:
Load