Refresh Page Problem
-
Hi Friends, ;) I want to change text contents of some parts of the HomePage(for example left part and footer) after every 10 seconds.But I dont want to refresh the entire Page.Only the specified portions. Please help me in solving this problem. Thanks a lot naresh This is naresh
-
Hi Friends, ;) I want to change text contents of some parts of the HomePage(for example left part and footer) after every 10 seconds.But I dont want to refresh the entire Page.Only the specified portions. Please help me in solving this problem. Thanks a lot naresh This is naresh
Hi, You can do this with the html
<object>
elements. Set thedata
attribute to the url of an embeded page, set thetype
attribute to "text/html", and you'll need to set thewidth
andheight
attributes as well. Then the embeded page(s) can use meta refresh without affecting the whole page. Cheers Phil Hobgen barbari.co.uk Southampton, UK -
Hi Friends, ;) I want to change text contents of some parts of the HomePage(for example left part and footer) after every 10 seconds.But I dont want to refresh the entire Page.Only the specified portions. Please help me in solving this problem. Thanks a lot naresh This is naresh
-
Hi, You can do this with the html
<object>
elements. Set thedata
attribute to the url of an embeded page, set thetype
attribute to "text/html", and you'll need to set thewidth
andheight
attributes as well. Then the embeded page(s) can use meta refresh without affecting the whole page. Cheers Phil Hobgen barbari.co.uk Southampton, UKClever! I'm going to have to remember that one. 5! :) --Jesse
-
Hi Friends, ;) I want to change text contents of some parts of the HomePage(for example left part and footer) after every 10 seconds.But I dont want to refresh the entire Page.Only the specified portions. Please help me in solving this problem. Thanks a lot naresh This is naresh
Hi naresh U can use hidden iframe on home page which should be a page on same domain and it should fetch data every n seconds by using javascript timer functions and changes portions of home page e.g. in iframe ... window.parent.document.getElementById("whatever").innerText=yourValue; hope this helps
-
Hi Friends, ;) I want to change text contents of some parts of the HomePage(for example left part and footer) after every 10 seconds.But I dont want to refresh the entire Page.Only the specified portions. Please help me in solving this problem. Thanks a lot naresh This is naresh