Jump to content

How to pass the form to a javascript function?


ballhogjoni

Recommended Posts

Try:

<script type="text/javascript">
   window.onload = function()
   {
      var form1 = document.forms["form1"];
      var splitLink = document.getElementById("splitLink");

      splitLink.onclick = function()
      {
         splitDate(form1);
      }

      function splitDate(form)
      {
         var checkin_dates = form.checkin.value.split("/");
      }
   }
</script>

.
.
.

<form name="form 1" action="">
<input>...
<a href="#" id="splitLink">test</a>
</form>

 

One thing I noticed, as well, is that you're not doing anything with your checkin_dates variable.  You assign something to it, but that value is gone once the function is out of scope.  You should declare that variable in the global space (where I declared my two variables) if you actually want to retain checkin_dates.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.