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 Chriss 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: *

  • Users: kjmaclean
  • Content: Threads
  • Order by date
  1. kjmaclean

    style property in IE6

    I use this code to dynamically change the visibility of a div: document.getElementById('div_id').style.display="block"; document.all.div_id.style.display = "block"; // for IE 6 The first code statement works great in all browsers (including IE7+) but not in IE6, so I added the second...
  2. kjmaclean

    separating Javascript from HTML

    I have the following line of code in my HTML, which fires off Javascriot functions. I want to separate the JS from the HTML, but I'm not sure how to do it. Here's the code: <code><li><a id="activatebutton" class="button1" href="javascript:activateIt();" onmousedown="changeimage(); return...
  3. kjmaclean

    auto load .swf file

    Is this a pipe dream or a possibility with Javascript? I have an html page with a button. The user pushes the button and the script opens a new window, loads a swf file, and auto plays it. This seems like too much for Javascript, but I am new to JS and wonder if any gurus out there knew if...
  4. kjmaclean

    setTimeout question

    I have the following image and button code: <code> <img id="someimage" src="Image1.gif" alt = "" /></code> ..... <code><li><a class="button1" href="javascript:void()" onclick="javascript:activateNewWindow()"></a></li></code> This func will replace the Image1.gif image on my page with an...

Part and Inventory Search

Back
Top