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 Mike Lewis 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. 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 =...
  16. hunt00

    work around for popup blocker

    Can someone give me some directions to get over the popup blocker, if there is any....? Thanks.
  17. hunt00

    check image size

    imageName.width //works on IE FF imageNmae.height //works on IE FF imageName.fileSize //FF didnt work when testing, probably needs some work around. :-D
  18. hunt00

    check image size

    Is there a way to check an image size and dimensions by javascript?
  19. hunt00

    strip html tag with id

    By php, how to strip a html tag which has an id relates to it? For example, <div id="test" class="test"><p>Here is the content</p></div> The end results will only have: <p>Here is the content</p> Thanks!
  20. hunt00

    strip html tag which has an Id

    How could i strip the html tag which relates to an ID. For example: <div id="testid" class="test"><p>This is the body</p></div> How to strip the pair of <div> tag, that results only contains: <p>This is the body</p> Thanks!

Part and Inventory Search

Back
Top