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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Izzo

  1. Izzo

    I wonder if someone knows how to do

    Wow you guys are amazing. I'm trying to understand this code but I'm just not there yet. I made a program (an extension) for Dreamweaver that inserts some head code and a body onLoad event into a .htm document.This program also allows for the removal of the script. I can remove the head script...
  2. Izzo

    I wonder if someone knows how to do

    Typo - Please ignore this section of the post: These examples could as well be like: People="Bob" People="Bob","Bill"
  3. Izzo

    I wonder if someone knows how to do

    I wonder if someone knows how to do this. I'm trying to figure out how to remove the complete event and handler - onLoad="Bob()" as in Example 1 below - if they are the only ones in the body tag. Or, remove "only" the handler - "Bob()" if another handler is...
  4. Izzo

    image rollover script

    Hey Idiot16, I'm still chewing on your script to see if it will work. I looks like it would be pretty lenghty tho. I was hoping to preload the whole shabang. I will post back if it does work tho. thanks for yours and Gregs time Izzo
  5. Izzo

    image rollover script

    Greg, yeah I know it's confusing to understand what I'm after. I don't want the images to swap at the same time. Imagine 20 images on a page. Using the script above I could swap them all (1 by 1) with the (Iswap) function as long as they are named the same. nrm1 nrm2 nrm3 nrm4 etc...all the...
  6. Izzo

    This is a test only

    function PreloadImages(length, path, type) { for(var i = 1; i<=length; i++) { this[i]= new Image() this[i].src= path + i + type } return this } ovr=new PreloadImages(10,'Sub_Menu_1/sub1_butovr','.gif') nrm=new PreloadImages(10,'Sub_Menu_1/sub1_but','.gif') ovrB=new...
  7. Izzo

    This is a test only

    function PreloadImages(length, path, type) { for(var i = 1; i<=length; i++) { this[i]= new Image() this[i].src= path + i + type } return this } ovr=new PreloadImages(10,'Sub_Menu_1/sub1_butovr','.gif') nrm=new PreloadImages(10,'Sub_Menu_1/sub1_but','.gif') ovrB=new...
  8. Izzo

    image rollover script

    Hi Greg, Basically I want the same functions (Iswap,Iback) to rollover 2 sets of differently named images. The script works to rollover the first set named &quot;sub1but,sub1butovr&quot; but I don't know how to reference the other set sub2but,sub2ovr&quot; without creating 2 more functions...
  9. Izzo

    image rollover script

    Hi All, I'm trying to make an image rollover script work by using the &quot;same&quot; functions (Iswap) and (Iback) for 2 different variables(?) ovr,nrm and ovrB,nrmB. The script below works for the first set-(ovr,nrm) but I need to know how to make it work for the second set-(ovrB,nrmB)as...
  10. Izzo

    onBlur window close

    Hi All, In a popup I have <body onBlur=self.close()> Works fine but what's happening is if I click into a table on that page the focus goes to the table therefore blurring the body and closing the window. I'm trying to make an else/if script that will ignore the table focus or else close the...
  11. Izzo

    Do Javascript functions have a history?

    Is it possible to call the last function executed? For instance a function is executed and completed. Then another function is called to execute this exact function again? not a new one. It would act like the browser history does. Izzo
  12. Izzo

    Hi flashers Is there a way to ma

    Thatks WhiteTiger but nope....didn't work I've tried all of the event handlers. onBlur and onFocus work ok in IE but not in Netscape
  13. Izzo

    Hi flashers Is there a way to ma

    Hi flashers Is there a way to make a flash button work onClick to open a new window browser in Dreamweaver? Works with onMouseOver but no onClick Thanks
  14. Izzo

    Swap image inside &lt;div&gt; NN errors

    Thanks Stephen. Yes I do need to read up on NS. I went to your site and looked at the code.Works in IE but your page locks up in NS4.7 also. I don't plan on nesting the div's like you have, but I guess the approach is basically the same. What I am trying to do is just swap some images that sit...
  15. Izzo

    Swap image inside &lt;div&gt; NN errors

    hi all, Does anyone know why this script would not work in Netscape4.7 with the images in <div>'s? [A portion of the <head> script] over=new PreloadImages(20,'nav2_images/butovr','.gif') norm=new PreloadImages(20,'nav2_images/but','.gif') function Iswap(num){ if(document.images)...

Part and Inventory Search

Back
Top