Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
Discussion Groups
General
GeneralPortable MacsHardwareNetworking
Applications
Mac ApplicationsEudoraFirefox / MozillaInternet ExplorerOutlook ExpressMS OfficeEntourageExcelPowerPointWordVirtual PCMedia PlayerOther MS Products
Programming
Mac ProgrammingCodeWarriorPerl
Country Specific
Australian Mac GroupUK Mac Group

Mac Forum / Applications / Internet Explorer / April 2004



Tip: Looking for answers? Try searching our database.

Simulating frameset onLoad

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
D. Alvarado - 27 Apr 2004 19:34 GMT
Hello,  I was experimenting with the "onLoad" frameset event handler
and noticed that on Mac IE 5.2 for OS X, when you click 'Refresh', the
handler does not get invoked.  Thus, on Mac IE 5.2 for OS X, the
following page

<html>
<head>
<title></title>
</head>

<frameset rows="50%,50%" onLoad="alert('loaded');">
       <frame name="top" src="../dist_info/">
       <frame name="bottom" src="../summary">
</frameset>

</html>

only displays "loaded" once no matter how many times you click
'Refresh'.  Does anyone know a work-around such that I can invoke this
function whenever the page is reloaded?

Thanks, - Dave
goinoutwest - 27 Apr 2004 20:33 GMT
> <html>
> <head>
[quoted text clipped - 11 lines]
> 'Refresh'.  Does anyone know a work-around such that I can invoke this
> function whenever the page is reloaded?

You could try moving the alert into a seperate script block:

<html>
<head>
<title></title>
</head>

<frameset rows="50%,50%">
       <frame name="top" src="../dist_info/">
       <frame name="bottom" src="../summary">
</frameset>

<script language="JavaScript">
   alert('loaded');
</script>

</html>
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.