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!

Search results for query: *

  • Users: hunt00
  • Content: Threads
  • Order by date
  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

    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!
  4. hunt00

    count string

    Is there any way to count string byte...?
  5. 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!
  6. 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!
  7. 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 =...
  8. hunt00

    work around for popup blocker

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

    check image size

    Is there a way to check an image size and dimensions by javascript?
  10. 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!
  11. 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!
  12. hunt00

    grab input value by using php

    How can i grab the hidden input innerHTML value in php? HTML: <input type="hidden" name="temp" id="temp" value="<?=$a?>" /> PHP: tried 1. print("<script language = 'javascript'>document.write(parent.outer_form.temp.innerHtml)</script>"); 2. print("<script language =...
  13. hunt00

    check embedded html url

    How to check if the text has an embedded html url? Thanks very much!
  14. hunt00

    regex

    What does the following mean in regex? 1. [:space:] 2. (/|\?) 3. [:alpha:] [:alnum:] Thanks in advance!
  15. hunt00

    document.getElementById(loopID)

    I am trying to use the ID through the loop, but error: document.getElementById(firstN)has no properties count = 5; //5 is set up temporary for (i=0; i<5; i++) { firstN = 'firstN'+i; firstN = 'secondN'+i; document.getElementById(firstN).innerHTML =...
  16. hunt00

    getElementById...innerHTML

    If i call the tableID in the following js code in a loop since the total table number is dynamic, it gives error: document.getElementById(tableID).rows has no properties. In the html code, there is matching table1, table2, table3.... if i hardcode it, it works. But i need to put it in a loop...
  17. hunt00

    images as &lt;option&gt;

    Does anyone know how to put images as the <option> dropdown choices? Thanks!
  18. hunt00

    regular expressions

    How to get both text link and url link works in regular expression? Used $text = ereg_replace("[[:alpha:]]+://[^<>[:space:]]+[[:alnum:]/]","<a href=\"\\0\">\\0</a>", $text); It works fine for the url link, but breaks the text link.
  19. hunt00

    gray out button at the end of images array

    How could i gray out the Next button after finishing the last image by onclick.
  20. hunt00

    open url in a block on a page

    Wondering if javascript could open an url at a specific location on a page. if ( test == "a") { document.write("Below is the page"); //here will be the page that 1st url referred to } else { document.write("Here is another page"); //here will be the page that 2nd url referred to }

Part and Inventory Search

Back
Top