Jump to content

worrall

New Members
  • Posts

    3
  • Joined

  • Last visited

    Never

Posts posted by worrall

  1. Use the following in your code..

    <select name="name" id="name" onchange="return checker(this.form);">

    And keep the following code in your js folder..

    function checker(frm)

    {

    var select_index = document.getElementById('name').selectedIndex;

    var option_value = document.getElementById('name').options[select_index].value;

    window.location = "search.php?id=" + option_value;

    }

×
×
  • 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.