jundo12
05-03-2014, 09:39 AM
i have a html frameset i'm using to act like a place to hold game player choices, primarily because they stick to the player's window statically thru out the game and as a result, act similar to saving player choices to a database. currently, there's a side frame, a footer frame and a main window frame. however, i need to occasionally break out of the footer frame, while retaining the already selected data in the side frame. how do you break out of 1 frame in your frameset without losing the stickiness in the other frames?
or even better is there a way to modify the size of the frames between page clicks? for example
<frameset cols="12%,*" frameborder="0" border="0" framespacing="0" >
<frame name="menu" src=".html" marginheight="0" marginwidth="0" scrolling="no" >
<frame name="content" src=".html" marginheight="0" marginwidth="0" scrolling="no" >
</frameset>
upon click, changed to
<frameset cols="22%,*" frameborder="0" border="0" framespacing="0" >
<frame name="menu" src=".html" marginheight="0" marginwidth="0" scrolling="no" >
<frame name="content" src=".html" marginheight="0" marginwidth="0" scrolling="no" >
</frameset>
without effecting the stickiness of the data in the frames?
or even better is there a way to modify the size of the frames between page clicks? for example
<frameset cols="12%,*" frameborder="0" border="0" framespacing="0" >
<frame name="menu" src=".html" marginheight="0" marginwidth="0" scrolling="no" >
<frame name="content" src=".html" marginheight="0" marginwidth="0" scrolling="no" >
</frameset>
upon click, changed to
<frameset cols="22%,*" frameborder="0" border="0" framespacing="0" >
<frame name="menu" src=".html" marginheight="0" marginwidth="0" scrolling="no" >
<frame name="content" src=".html" marginheight="0" marginwidth="0" scrolling="no" >
</frameset>
without effecting the stickiness of the data in the frames?