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 derfloh 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 i78jo

  1. i78jo

    css problem

    no worries man :) i'm learning deutsch, i'm a beginner :p ... it's good to learn languages. keep laughing man [pipe]
  2. i78jo

    css problem

    boomerang, ich spreche nicht deutsch ;(
  3. i78jo

    trouble with 2 return scripts in the <form> tag

    function checkFields() { if(!(checkRadios())) {return false;} if() else if() else if() .......... ......... ........ ....... ...... ..... .... ... .. . } <form onsubmit=&quot;return checkFields();&quot;>...</form>
  4. i78jo

    trouble with 2 return scripts in the &lt;form&gt; tag

    hello, actually i didn't understand what you want exactly! but if what you mean is to run js functions before the form being submitted, then take a look @ this script: <script language=&quot;javascript&quot;> <!-- function func1() {write script for this function} function func2() {write script...
  5. i78jo

    MUST READ...Faster and safer database queries, by Ben Forta

    MUST READ...Faster and safer database queries using the <CFQUERYPARAM> tag, by Ben Forta: http://www.macromedia.com/desdev/articles/ben_forta_faster.html
  6. i78jo

    Date Comparision

    check this url please: http://developer.irt.org/script/16.htm
  7. i78jo

    Interchanging JavaScript &amp; ColdFusion Variables

    yes, it's possible. <cfset varCF = &quot;i'm a viking&quot;> <cfoutput> <script language=&quot;javascript&quot;> var varJS = &quot;#trim(varCF)#&quot;; document.write(varJS); </script> </cfoutput>
  8. i78jo

    Interchanging JavaScript &amp; ColdFusion Variables

    yes, it's possible. <cfset varCF = &quot;i'm a viking&quot;> <cfoutput> <script language=&quot;javascript&quot;> var varJS = &quot;#trim(varCF)#&quot;; document.write(varJS); </script> </cfoutput>

Part and Inventory Search

Back
Top