• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Need help with JavaScript

With the following code:

framename.location.reload()

You could use it in a function or a link e.g.

<a href="javascript:framename.location.reload();">Reload frame</a>

...or if you wanted to refresh the page in the other frame when a link was clicked in the main frame....

<a href="pagewhatever.html" onclick="javascript:framename.location.reload();">Page Whatever</a>

...or in a function...

function myFunction(){
framename.location.reload();
}

Hope that helps 🙂

teknodude
 
Thanks that works. I was using document.refresh() function for some reason, and it wasn't working.
 
Back
Top