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: LScott
  • Order by date
  1. LScott

    Setting the src= property of the <script> tag

    I haven't had any success with setting the .src property of a <script> tag on a mac in either ie or netscape. Has anyone had any luck with this? Thanks in advance!
  2. LScott

    creating an external JS file? Possable?

    It is possible to create a menuItems.js file to hold the menu items in a set of arrays for each menu item, for example. This file should be included in the header section of your page. You will then have to use javascript and document.writes to loop through the arrays and write the html that...
  3. LScott

    Position Clock

    One problem is that the proposed script won't work in Netscape browsers because object.innerText is not supported. A way to get it to work in both browsers is to have the function return the string 'time' to the function call, which is embedded in the HTML in the spot where you want the time to...
  4. LScott

    retaining select box selections after submitting page

    Using a cookie would probably the way to go. The user would of course have to have cookies turned on for this option to work, which could affect your app depending on how important this is to your users.
  5. LScott

    Is there a way to make a page start at the bottom when loaded?

    You could try using window.scrollTo(x-axis, y-axis) in IE in a <body onload=scrollPage()> function that runs after the page is loaded. You can use an arbitrarily large number for the y-axis value (zero for the x-axis value) to make sure you reach the bottom of the page, or you could be more...
  6. LScott

    Top ten on a group by query

    Additional Question: I have a table with about 11,500 records, and the query worked great, but it took nearly 20 mins to run on a respectable machine. Is there any way to enhance the performance with large recordsets? Thanks, Scott

Part and Inventory Search

Back
Top