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

Search results for query: *

  • Users: Izzo
  • Order by date
  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)...
  16. Izzo

    CSS Page Margins

    Thanks, that's too far back to remember.. But it still doesn't work. I get a huge margin when using 0. What I want is to set ALL page margins to 0 using CSS. ...Izzo...
  17. Izzo

    Border at bottom of Page

    Hi all, I can't seem to sucessfully make a small strip appear at flush with the bottom of the browser when there is not enough content for a scrollbar. I have tried making a 3row table, height set to 100% with a 20px spacer gif in the top and bottom cells and more nested tables in the center...
  18. Izzo

    CSS Page Margins

    I'm having trouble understanding this. I am using this code: body { margin-left: 0%; margin-right: 0%; } but I thought percentages were bad to use instead of pixel sizes. What I want to do is set ALL 4 Page margin widths to &quot;0&quot; so there are no margins and that will work in Netscape...
  19. Izzo

    HELP! scroll bars on left side of frames?

    Tamara, It's absolutely impossible to do with todays Browsers. like Tulsa Jef said tho, you can do it in Flash but no way in HTML, javascript, or nothing. I know this isn't what you wanted to hear but it's just the way it is. ...Izzo...
  20. Izzo

    How can you can call a frameset wit

    How can you can call a frameset with a specified frame loaded. Can anyone help me, please? As an example, I want to load framesetA.html but with newinnerframe.html loaded in rightFrame instead of oldinnerframe.html as specified in the frameset. Izzo

Part and Inventory Search

Back
Top