Announcement

Collapse
No announcement yet.

form

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • form

    Hi try to get script to work where it check Required field(s) validation.

    <FORM NAME=FEEDBACK METHOD=POST ACTION="FEEDBACK.php" >

    This action the php script, find no problem, the bit I am stuck on is I need to add the following

    <form name="FEEDBACk" onsubmit="return formCheck(this);">

    Have added

    <FORM NAME=FEEDBACK METHOD=POST ACTION="FEEDBACK.php" onsubmit="return formCheck(this);">

    Doesn't matter where I put the onsubmit part doesn't work

    Any help pls
    www.bluevodaexchangelink.com
    BluevodaExchangeLink Help Center
    Bluevodaexchangelink Forum

    The only place for bluevoda site to be linked with!

  • #2
    Here's how you do it:
    1. Open the object HTML of the form.
    2. Before tag code:
    <SCRIPT language="JAVASCRIPT">
    function
    formCheck
    (theForm)
    {
    alert("BlueVoda is Cool!");
    return true;
    }
    </SCRIPT>
    3. Inside tag code:
    onsubmit="javascript:return formCheck(this);"
    Forum Moderator
    BlueVoda Spe******t

    Comment


    • #3
      thank you Pablo

      said it before...you rock
      www.bluevodaexchangelink.com
      BluevodaExchangeLink Help Center
      Bluevodaexchangelink Forum

      The only place for bluevoda site to be linked with!

      Comment


      • #4
        well, they do not give these jobs to monkeys ;)
        Forum Moderator
        BlueVoda Spe******t

        Comment

        Working...
        X