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

  1. llamatron

    Why can't I veiw my own source?

    Wow i just finished reading the 60+ view/source thread and found a GROOVY solution to your problem bombboy. Pop this snippet into your browsers address bar : javascript:alert(document.body.innerHTML); Wicked!! :)
  2. llamatron

    Extract hyperlinks from a webpage

    Is it possible to extract all the hyperlinks in an external webpage I open in a popup using Javascript and store them in a variable so that the string can be manipulated or is there a security issue with this too?
  3. llamatron

    Why can't I veiw my own source?

    Which I see you've already tried :) so I would reinstall Internet Explorer. I had this problem on my laptop and if I opened notepad first then went to view/source it worked.
  4. llamatron

    Why can't I veiw my own source?

    In Internet Explorer go to Tools/Internet Options/Programs and check that you have selected an HTML editor.
  5. llamatron

    filling array value where part of value is always constant

    Okay fair enough, but do you know how to solve my original problem?
  6. llamatron

    filling array value where part of value is always constant

    why is it leaving square brackets out, this forum is as user friendly as javascript
  7. llamatron

    filling array value where part of value is always constant

    aaagh course last line should read: myname=user+[i]; } </script> Please help....
  8. llamatron

    filling array value where part of value is always constant

    I need to fill up an array so that it reads user1, user2, user3 etc. My code looks like this : <script> var myname = new Array(11); for (i=0; i<11;i++){ myname[i]=user+[i]; } </script> I keep getting a javascript error. Why is this syntax wrong? Thanks,
  9. llamatron

    send url to external webpage opened via a form

    No; that would go to a brand new blank web page NOT the window I submit the form to, which isn't what I want. Anyway, I figured out how to do what I want but only with a manual link on the main page: <form name=&quot;form1&quot; method=&quot;post&quot; target=&quot;popup&quot...
  10. llamatron

    send url to external webpage opened via a form

    I have a main window that submits a form to a website and opens up the results in a new window, the action of the form is an external webpage. : <form name=&quot;form1&quot; method=&quot;post&quot; target=&quot;_blank&quot; action=&quot;http://www.externalpage.com/external.asp&quot; > and I...

Part and Inventory Search

Back
Top