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

  • Users: TurboSRT4
  • Order by date
  1. TurboSRT4

    Load Iframe then print

    function PrintFrame(whichFrame){ parent[whichFrame].focus(); parent[whichFrame].print(); } you answered your own question just put that function in page1.htm!
  2. TurboSRT4

    using css to style text fields

    can someone help me with this please thanks
  3. TurboSRT4

    Simple help with expressions comparing 2 conditions

    ok thanks a lot man you were great help to me today i knew how to accomplish my last issue but in a very long format :) thanks so much!
  4. TurboSRT4

    Simple help with expressions comparing 2 conditions

    little more help please :) I am printing user info to file and have the following print USERS "\n$usernxx$passworxxuserxx$streetxx$cityxx$statexx$zipxx$phonexx$faxxx$emailxx$company"; the problem here is obvious, but i need the string printed with no spaces for instance $usern name is...
  5. TurboSRT4

    Simple help with expressions comparing 2 conditions

    sweet man thank you
  6. TurboSRT4

    Simple help with expressions comparing 2 conditions

    feherke, is there also a way to push the error if the field is blank without adding a seperate if statement thank you
  7. TurboSRT4

    Simple help with expressions comparing 2 conditions

    Hey thanks for your help man! your solution will not falter with case sensitivity?
  8. TurboSRT4

    regex case sensitivity

    Sorry to keep bothering u guys but im new to using expressions i always did stuff the long and wrong way lol I have this snippet if ($first =~ /[\d\\\/~`@#\$\%^&*()-_\+\=\[\{\]\}\|\"\']/){ push @errors, qq(First Name Is Invalid<BR>); } it works ok if the string contains numbers or...
  9. TurboSRT4

    Simple help with expressions comparing 2 conditions

    No, i want numbers and letters only no spaces or special characters thank you
  10. TurboSRT4

    Simple help with expressions comparing 2 conditions

    lol sorry this should help if ($passwor =~ /[\\\/~`@#\$\%^&*()-_\+\=\[\{\]\}\|\"\']/){ push @errors, qq(Password Is Invalid<BR>); }
  11. TurboSRT4

    Simple help with expressions comparing 2 conditions

    Thanks a lot i have this following code which is returning errors if it contains a number? can someone show me the fix and expliain it please thank you
  12. TurboSRT4

    Simple help with expressions comparing 2 conditions

    hi I have this if ($first =~ /\d{1,}/{ die; } how could i compare 2 or 3 at the same time like if $first contains a numeral or if $first contains an @ or if $first contains a period. thanks guys.
  13. TurboSRT4

    using css to style text fields

    hello i have a css style applied to a text field font-family:"comic Sans MS"; padding-left:5px; padding-right:5px; width:120px; height:20px; font-size:12px; background-repeat:no-repeat; border:none; background-image: url(../../images/textField.png); background-color...
  14. TurboSRT4

    min-height in IE`

    Hello i have a problem but not a major issue, so far it its my only real hold up in making my site cross compatible. css min-height just does nothing in IE is there a simple solution. I have googled the issue but nothing has worked. thanks you
  15. TurboSRT4

    Accessing parents variabl from iframe

    sorry i got it lol problem was i had the parent variable defined in a function :) parent.var worked fine
  16. TurboSRT4

    Accessing parents variabl from iframe

    hello guy hoping for some help her please. I have a variable in the parent document. var holdShow = 'true'; how can i access this variable from an iframe? i tried parent.document.holdShow and many other things but i just keep getting undefined. thanks in advance for any help
  17. TurboSRT4

    expected ; driving me nutz

    well i fixed it can someone please explain why this fix worked onmouseover=javascript:scOn("test"); i took the quotes out of the onmouseover event, and i changed the single quotes to double quotes in passing the variable???
  18. TurboSRT4

    expected ; driving me nutz

    Hello, i use this same function with no problems on other pages i have tried everything and im pretty good with perl and javascript but i keep getting an error expected ; if i remove 'test' from the function to just scOn() it works fine, the problem is when trying to pass a variable pleas help...
  19. TurboSRT4

    Help with array

    sweet i got it i do not understand why it is but it is! thanks
  20. TurboSRT4

    Help with array

    i just changed the code to help it now displays the evaluated value of the array and the literal value. thanks guys function rightClick(episode,pass){ trueEpisode = episode; evalEpisode = eval(episode); truePass = pass; evalPass = eval(pass); stayGreen.push(trueEpisode)...

Part and Inventory Search

Back
Top