I'm going to guess this is simple; however, I am new to jQuery and it just seems like I can't get this to function properly. Here's a little background:
I have two drop boxes that I need to combine the values of, then run an "*=" search to display any results.
Here's the code I have, only two lines I think should do it. I'm just not understanding something is all. Any help would be greatly appreciated!
var $result = $('#provider').val() + $('#grade').val();
$('tr[id*="$result"]').show();
I'm guessing the *= isn't parsing the variable and just searching for '$result' as a string. I tried removing the quotes, but I've had no luck.
Again, thank you in advance - I will post any results back here.