hey. is there any way to update some iframe content in real time without refreshing the page? here's example: i have 2 pages page1.html & page2.html page1.html contains : <iframe src="page2.html"></iframe> and page2.html contains : some divs or some video etc.. and when i updated that page2.html and uploaded it, so user don't have to refresh page1.html to see it. it should be refreshed by it self when there's update. Thanks.
$(document).ready(function() { $('#yourIframeId').contents().find('body').html('your changes in html tag formate'); });
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)