I've options like this
<select name="hall" id="hall">
  <option>1</option>
  <option>2</option>
  <option>3</option>
  <option>4</option>
  <option>5</option>
</select>
I'm using jquery function to submit my form
 $('#hall').change(
But when the same value is selected again, I want it to to be triggered. How can i do this?
 
     
     
     
     
    