So I want to be able to hide all the options and then show only the ones that don't include hello_
in their value. This includes hello_bye
, hello_hello
etc. Anything that starts with hello_
This is what I have so far:
jQuery(document).ready(function(){
jQuery("#metakeyselect > option").hide();
jQuery("#metakeyselect > option[//what goes here?//]").show();
});
How do I show everything BUT options with values including hello_?