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 SkipVought 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. shox321

    hide div content after Time delay of x

    you can comment one of those : this: // var div_timer; or this: var div_timer=setTimeout("hide_div();",30000); also u can remove the onmouseout event from the <div> tag
  2. shox321

    hide div content after Time delay of x

    <div style="border:#000000 1px solid; width:200px; height:200px" id="some_id" onmouseout="hide_div(30);">div cont here</div> <script> var div_timer; var div_timer=setTimeout("hide_div();",30000); // 30000 == 30 000 Milliseconds = 30 Seconds function hide_div(time_here){ if(time_here){...
  3. shox321

    How To Scroll A Text Area To A Highlighted Text

    hi I Made A Code That Searches In A Text Area For A Specific Text And Highlights It (In IE The Text Area Scrolls Down Automatically To The Highlighted Text) But In FireFox It Doesn't . . How Can I Make It Scroll Down To The Selected Area My Code Is below : ** Assuming That...

Part and Inventory Search

Back
Top