How To Change Title Without Refresh Or Reload ? It Can Be Changed By Jquery But Effect Will Not Be Done On View Source. Any Solution ?? Thanks
how to change title without refresh or reload ? It can be changed by jquery but effect will not be done on view source. i've use document.title. On browser it is changing value bu
Solution 1:
There is no way to change the source of a page with (client-side) JavaScript. The source is the raw code that was delivered to the browser.
You can change the current DOM, and a DOM viewer (such as you can find built into most browser Developer Tools) will show you a serialization of the current state of the DOM.
Post a Comment for "How To Change Title Without Refresh Or Reload ? It Can Be Changed By Jquery But Effect Will Not Be Done On View Source. Any Solution ?? Thanks"