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 Chris Miller 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: *

  1. gabrielwert

    How to make Pop ups open and close in Sequence?

    thanks! i`ve got it working now, setTimeout() rules!
  2. gabrielwert

    How to make Pop ups open and close in Sequence?

    Yes! I think thats it.. i've tested it and from what I see, the values in the timer need to be inserted. Im a total begginer with Javascript. Could you help me or give me a more detailed explanation of how I can set the Pop-ups to open one by one but only after the first one closes in sequence...
  3. gabrielwert

    How to make Pop ups open and close in Sequence?

    Hi! What I have here below is a source code of an HTML page and some Javascript pop up in it. You can see a sample of this code on my website in the link below: http://truedownloads.orgfree.com/self_closing_alert_window-sample.htm However as you see, the page loads and the pop-p apears and...
  4. gabrielwert

    javascript browser content code accelaration, mission impossible??

    just one more question! i`ve found the code i needed on a site, the code is here below: javascript: var x = 31; var y = 1; function startClock() {if (x !== 'Done') {x = x-y; document.frm.clock.value = x; setTimeout("startClock()", 1000);} if (x == 0) { x = 'Done'; document.frm.clock.value = x...
  5. gabrielwert

    javascript browser content code accelaration, mission impossible??

    thanks sanshizi & feherke i`ve got it working now!
  6. gabrielwert

    javascript browser content code accelaration, mission impossible??

    Hello, i was wondering if anyone knows of some code similiar to this one below, but instead of making images spin.. i need to accelarate the browser`s speed thats running the codes of the offline js files that are in my cache. to view the code below just copy and paste it replacing the url of...
  7. gabrielwert

    what does the script of a counter or clock look like?

    This is the other part that I forgot to copy! } function fb_setPoints(s){ fb_points.innerHTML=fb_padLeft(s,6,"0"); } function fb_setReferrals(s){ fb_referrals.innerHTML=fb_padLeft(s,5,"0"); } now, what does the whole script look like? thanks for the help!
  8. gabrielwert

    what does the script of a counter or clock look like?

    I think it`s this: if( self != top ){ setTimeout('fb_boyWalk(); ',1000); setTimeout('fb_setPoints("012345");',2000); would the script below be a global variable? */ function fb_padLeft(Str,Length,PadChar){ Str +=""; Length =parseInt(0+Length,10); PadChar +=""; if(PadChar.length==0)...
  9. gabrielwert

    what does the script of a counter or clock look like?

    Thank you! I found what I needed! cheers!
  10. gabrielwert

    what does the script of a counter or clock look like?

    I want to modify a javascript counter from an aplication, but the .js file is so big I can`t find what is the code of a counter or clock ( not a real clock ) it`s just a counter to count seconds. it`s hard for me since javascript is new for me. what does the script of a counter or clock look like?

Part and Inventory Search

Back
Top