• Tinkered with the plugin in the editor and added onchange="this.form.submit();" to the <select> tag so it would filter the content without needing to click submit.

    <select name='ofpost_tag' id='ofpost_tag' class='postform' >

    Any idea why it would not work?

Viewing 1 replies (of 1 total)
  • Plugin Author Ross Morsali

    (@designsandcode)

    No reason it shouldn’t although haven’t tinkered with inline JS for a while.

    Why not try adding some JS to your theme and use jQuery (also untested)?

    $('#ofpost_tag').on("change", function(e){
        
        $(this.form).submit();
        
    });
Viewing 1 replies (of 1 total)

The topic ‘onchange=”this.form.submit(); does not work’ is closed to new replies.