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 gkittelson 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. newbiegalore

    reading firefox history file:ascii conversion API

    Thanks Dan, I was trying something like decimalascii.charAt(offset).. and it was not working, while the array [] notation worked properly. Thanks again, -A
  2. newbiegalore

    reading firefox history file:ascii conversion API

    Hello all :-), I am learning JS and extension programming and so am facing a few hurdles. I would greatly appreciate any pointers/code-samples/links to possible solutions. My extension needs to read the history.dat file from the user's profile. I am trying to read the data...
  3. newbiegalore

    Addeventlistener to detect click

    problem solved, just a syntax error
  4. newbiegalore

    Addeventlistener to detect click

    Hello everyone:-) I am writing a toolbar for firefox and want to detect when the back button is pressed. I tried searching for answers but did not find a satisfactory (simple) one. I have however not looked into using DOM inspector as yet. I am thinking of writing a listener for a mouse click...
  5. newbiegalore

    extract link from html text

    Hi there :-) , Thanks for the reply. The problem is that I am writing an extension for firefox and am using the xmlhttprequest object to retreive the html code for a site. The reply is in text/html format and somehow using getelementbyTagName does not work on it. Even...
  6. newbiegalore

    extract link from html text

    Hello everyone, I am new to JS and would appreciate any pointers about how to go about finding the html links on a html page. I need to extrat the http link between the <a and </a tokens. Can someone please point me to a function that can do this. Thanks
  7. newbiegalore

    detect ENTER keypress and click on button in address bar

    OK got it.. I used .. function kH(e) { var pK = e? e.which: window.event.keyCode; if (pK == 13 ){ alert('Enter was pressed'); } } document.onkeypress = kH; from: http://javascript.about.com/library/bltut33.htm Can someone please point me to how to understand if the "go" button in the...
  8. newbiegalore

    detect ENTER keypress and click on button in address bar

    Hello everyone Smile I have just finished going through some tutorials on developing extensions for mozilla and have made a version of the born-geek toolbar. Being a newbie I am stuck at a relatively simple-sounding problem and would greatly appreciate any pointers/examples.. The problem: I...

Part and Inventory Search

Back
Top