Javascript error if not showing Post Type drop down select
-
You need to add a conditional around your javascript (around line 101 in widget.super_search.php) so that it checks to see if the select is present or not. Otherwise you get a JS error.
I fixed by wrapping the jquery code in a conditional like this:
jQuery(document).ready(function ($) { if ($('#super_searchform select#post-type-selector').length) { $('#super_searchform select#post-type-selector').live('change', function(e) { e.preventDefault(); if( $('#super_searchform input#s').val() != '' && $('#super_searchform select#post-type-selector').val() != '') { $('#super_searchform').submit(); } else { $('#super_searchform input#s').focus(); } }); } });
- The topic ‘Javascript error if not showing Post Type drop down select’ is closed to new replies.