jqTransform Autosubmit

89 views Asked by At

I am trying to implement autosubmit on a jqTransformSelect. I have tried

$("div.jqTransformSelectWrapper ul li a").click(function(){     
  $("select-form").submit();            
  return false;
});

But I've failed miserably. Am I doomed to drop jqTransform or is there a hack for this script?

1

There are 1 answers

0
Matt Zeunert On

Your selector should be an ID:

$("#select-form").submit();    

Note the "#" at the beginning of the selector. Currently you're matching a tag.