Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

2 divs, 2 iframes freshing one iframe from another.

Status
Not open for further replies.

bobrivers2003

Technical User
Oct 28, 2005
96
GB
I have a user account admin page that contains 2 divs displayed like a layer of cards, and within each div is an iframe releating to a page that changes user account details.

<div id=adminconsole style=\"display: none;\">
<iframe src=\"changeUser.php\" width=925 height=280 frameborder=\"0\"></iframe></div>

<div id=adminnewuser style=\"display: none;\">
<iframe src=\"newUserForm.php\" width=835 height=260 frameborder=\"0\"></iframe>
</div>

the first div contains a page that displays all the user accounts. The second div/iframe combo displays a form to add a new user account. when a new user is added i need the page to be refreshed so that in the adminconsole div the lastest addition to the user accounts is displayed.

I have tried in newuserform.php the following:

onClick=parent.location.reload();

onClick=window.opener.location.reload()

No such luck any ideas.

Thanks in advance

 
This question is asked almost daily in the JavaScript forum. You can probably see on thread on this topic without even doing a search. forum216

Dave


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
O Time, Strength, Cash, and Patience! [infinity]
 
I a sorry about that. I had completed a search before submitting this post on this forum to check it wasn't submitted.

Obviously this wasn't enough.
 
No problemo. 'just trying to keep the JavaScript questions (which is what this is, when you get down to the solution) in the JavaScript forum.

Dave


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
O Time, Strength, Cash, and Patience! [infinity]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top