I\'m trying to use a wildcard to get the id of all the elements whose id begin with \"jander\". I tried $(\'#jander*\'), $(\'#jander%\') but it doe
$(\'#jander*\')
$(\'#jander%\')
Since the title suggests wildcard you could also use this:
$(document).ready(function(){ console.log($('[id*=ander]')); });
This will select the given string anywhere in the id.
id