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?
Your selector should be an ID:
Note the "#" at the beginning of the selector. Currently you're matching a tag.