Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript Update title of dynamically-loaded page? Reply To: Update title of dynamically-loaded page?

#237524
programacaocriativa
Participant

If you try to change this title of page and don’t get success, try this and i think what you will be happy =)

<script>
title = document.getElementsByTagName(‘title’)[0].innerHTML = prefix + ‘Deleting row(s)’;

window.history.replaceState(null, title, destination);
</script>