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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by hunt00

  1. hunt00

    php 4.x with soap

    does anyone knows how to use soap on php 4.x?
  2. hunt00

    call a new seperate window form field

    How could i call/put value to a new seperate window form field? for example, the new window form name="formNew", with an input field name="windowNew_input" id="windowNew_input". On current window, using : document.formNew.windowNew_input.value = "test"; this ends up with error
  3. hunt00

    attachEvent

    Thank you, j4606 too! (Just refreshed here.) Yes, i have another onkeypress to start this. too many things used together. :-) You have a great weekend!
  4. hunt00

    attachEvent

    Thanks very much, Dan, for your help and reminding! It is that i put it on a keypress, above on that calling this attachEvent makes everything slow down. yah, for the firefox, i am using addEventListener. Have a great weekend!
  5. hunt00

    attachEvent

    document.getElementById("test").contentWindow.document.attachEvent("onkeyup",charCounter); document.getElementById ("test").contentWindow.document.attachEvent("keydown",charCounter);
  6. hunt00

    attachEvent

    My attachEvent calls a character count function on key up and key down. It slows down IE dramatically, with using up 100% of my cpu. Does anyone know how could i get over this? Thanks!
  7. hunt00

    count string

    Thanks so much for the clear explaination, Feherke!! I hope you have a great day!
  8. hunt00

    count string

    Hi, Thanks very much for this one line of code! I am afraid probably will need your explaination to help me understand about it...if possible Thanks greatly!
  9. hunt00

    count string

    thanks... doesnt str.length count character instead of the byte?
  10. hunt00

    count string

    Is there any way to count string byte...?
  11. hunt00

    get the difference string after comparing

    Thanks very much!
  12. hunt00

    get the difference string after comparing

    How do i get the different string after compare 1. string1 = this-is-a-test 2. string2 =this-is-a-test-numberOne how to compare those strings and get the string "numberOne" as the result? Thanks very much for your help!
  13. hunt00

    remove strings

    Thanks greatly! It works very well!
  14. hunt00

    remove strings

    I have the string $orig. Could someone help me to remove all the brackets and strings inside the brackets? The result will look like $final. $orig = "text1<something>text2<others>text3"; $final = "text1text2text3"; Thanks very much!
  15. hunt00

    call a function on a created element

    Trying to call a function on the created link. But the alert only shows when click on the Top Level. Here is my js: <script> var theUL, theLi, theA; function test() { mystart = document.getElementById('testdiv'); for (var i=0; i<4; i++) { theLi =...

Part and Inventory Search

Back
Top