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 IamaSherpa 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. skills

    Trouble trying to open a link from a menu into a new page

    Ok, I have posted the code from the .js file on another webpage of mine. the website is: http://www.utccc.org/cgi-bin/static.pl?page=code The main website code is shown below in red. The css file is shown in blue. <!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot...
  2. skills

    Trouble trying to open a link from a menu into a new page

    I have a drop down menu. I am trying to set it up so that when the link is clicked, the page, or in my case the pdf loads ina new window. I have tried target:&quot;_new&quot; and target:&quot;_blank&quot; already with no success. Below is the code. menus[4] =...
  3. skills

    help with assembly compiler, linker, loader, and locator

    Does anybody know of a good site or faq that explains how each of these items assembly compiler, linker, loader, and locator works? Skills
  4. skills

    read keystroke in middle of function, not in form

    Edward and Adam, Here is the code that you desire. Note, The only way I was able to get this to work was to open a window. I tried putting it in a hidden frame, but the page would not load until I got out of the function, which was not an option. function search(first,find) {...
  5. skills

    read keystroke in middle of function, not in form

    Adam, Here is the situation... I have a search engine. It takes up to 3 minutes to finish. The problem is that it works by opening up a window reading the links, and then closing the window. This is done in as fast as the computer can go. Therefore, you can't use anything else until it is...
  6. skills

    read keystroke in middle of function, not in form

    Adam, What do I do if i don't want it to look for pressed keys until after the form has been submitted? Skills
  7. skills

    read keystroke in middle of function, not in form

    First off, I don't know how to use events. Second, would what you just described be used for a form? Skills
  8. skills

    read keystroke in middle of function, not in form

    I need to be able to read in a keystroke in middle of a function. All the help I have gotten before is only helpful if used in the form area. What I have is something like this: function example() { ... ... checkkeystroke() ... ... checkkeystroke() ... ... checkkeystroke() } and function...
  9. skills

    anchor array help

    I tried throwing in if (a[x].href != &quot;&quot; && a[x].id != &quot;&quot;){ into my code, and it still didn't work. Also, what is with the msg += &quot;\n&quot; + x + &quot; - HREF:&quot; + a[x].href + &quot; ---- ID:&quot; + a[x].id + &quot;>>>>> Name:&quot; + a[x].name Is that just...
  10. skills

    Reading in a keystroke using javascript

    Is it possible to have javascript look for a keystroke, and if the key is pressed, then do something? Skills
  11. skills

    anchor array help

    Ok, that didn't work so I am going to make this easy and just post the whole code. Here goes: function search(first,find) { var i = 0; var first_window = window.open(first,&quot;first_window&quot;,&quot;width=1,height=1,top=1700,left=1700&quot;)...
  12. skills

    problem using javascript to write to a different frame

    Jeff, Could you also answer my problem in thread216-598984. You were part of it, and then I lost you. I am really close on it, but I am having a problem with random <a name> throwing following links off by one or two. Any help would be great. Jonathan
  13. skills

    problem using javascript to write to a different frame

    Jeff, That is very close, except for the fact that every time I use results.document.getElementById(&quot;result_div&quot;).innerHTML = blanklink; what text was shown previously is overwritten. How do I solve this problem? Jonathan
  14. skills

    problem using javascript to write to a different frame

    Dave, that didn't work for me. Any more suggestions? Jonathan
  15. skills

    anchor array help

    I am not sure how that would fit into my code. Here is what I have now: Note this works except for those rare occasions I mentioned above. var a = first_window.document.getElementsByTagName(&quot;a&quot;); if (a[j].id) { pdf_link_text = a[j].id; } else...
  16. skills

    problem using javascript to write to a different frame

    Ok, I will make this very simple. Here is the two sets of code I have: <html> <style> <!-- a{text-decoration:none} a:hover{color:red} --> </style> <BODY bgproperties=&quot;fixed&quot; BACKGROUND=&quot;...&quot;> </body> </html> and results.document.writeln(blanklink); The code in red...
  17. skills

    anchor array help

    I have a slight problem with my coding. It searches great, except that on a few pages, there is this: <A NAME=&quot;2002&quot;> <FONT SIZE=&quot;+3&quot;><CENTER>2002</CENTER></FONT> <HR SIZE=2 color=&quot;black&quot;> <BR> <TABLE BORDER=0 CELLSPACING=1 CELLPADDING=4 WIDTH=99%>...
  18. skills

    problem using javascript to write to a different frame

    I have 2 frames. In one frame I have a form. In another, I have results show up. I can get items to appear when writing to the different frame. My problem is that all the code on the results page that was there before writing to it is no longer there, such as the background. I also have a...
  19. skills

    resizing a background image

    Is there html code to automatically resize a background image from say 600x800 to another size. I have an image that looks great on a 600x800 resolution, but when viewed at a higher resolution, the image is displayed multiple times to fill the screen. Thanks, Skills

Part and Inventory Search

Back
Top