livestrong
Technical User
Hi Everyone,
I have an online store.
It has two frames that we are concerned with here
mainframe = contains table of results and quick add button
topframe = contains basket info
At the moment when a user hits the add button the mainframe reloads and i have a piece of javascript that reloads the topframe as follows
also at the moment this is the start of my form for the add button.
What i would like to do is send these parameters to the topframe and reload just the topframe and not the mainframe.
Anyone got any ideas that would be great.
I have an online store.
It has two frames that we are concerned with here
mainframe = contains table of results and quick add button
topframe = contains basket info
At the moment when a user hits the add button the mainframe reloads and i have a piece of javascript that reloads the topframe as follows
Code:
<body onLoad="parent.topframe.location.reload();">
also at the moment this is the start of my form for the add button.
Code:
<form name="myform" action = "<?echo $_SERVER['PHP_SELF'];?>?id&quantity&myanchor">
What i would like to do is send these parameters to the topframe and reload just the topframe and not the mainframe.
Anyone got any ideas that would be great.