How to get iframe src page title and then set main page title
If you want to do it using jQuery:
var title = $("#frame_id").contents().find("title").html(); $(document).find("title").html(title);
You can do it only when pages are on the same domain, otherwise it's useless.
1.4m articles
1.4m replys
5 comments
57.0k users