|
|
|||||||||
|
|||||||||
|
|||||||||
| |
|||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Display Modes |
|
|
|
Ajax Application Generator Generate database and reporting .NET Web apps in minutes. Quickly create visually stunning, feature-rich apps that are easy to customize and ready to deploy. Download Now!
|
|
#1
|
|||
|
|||
|
Hi Friends,
Thanks in advance. My problem is related to I frames. I am displaying a Map image with two buttons Zoom in and Zoom out. When the user clicks on these buttons I am submitting the zoom values and depending on that the Image is zoomed. I want only the map image to be refreshed when the user clicks on the zoom buttons. I dont want the other contents on the page to be refreshed. Can anyone suggest how it can be done. The code is as follows:-- <IFrame src="Map.jsp" width="400" height="600" scrolling="no" frameborder="1"> </IFrame> The Map.jsp contains an <img> tag which holds the map and the other buttons. Anyhelp will be grateful.I am new to working with frames. |
|
#2
|
|||
|
|||
|
From personal experience of iframes I don't think the rest of the page will be refreshed if you click on the buttons provided they are sending the details direct to the map.jsp, if however this is not the case why not put an iframe inside an iframe example
main page-> <html><body> <P>My Page contents here!</P> <IFRAME SRC="Mymap.html" name -"mymap"></iframe> </body></html> Mymap.html -> <html><body> <iframe SRC="map.jsp"></iframe> // two buttons code here! </html><body> |
|
#3
|
|||
|
|||
|
other way:
<iframe src="Map.jsp" name="map"></iframe> Zoom Buttons: <a href="Map.jsp__Actions__" target="map"> |
![]() |
| Viewing: Dev Articles Community Forums > Web Design > Web Development > Help with HTML IFrames |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|