Storing selector when using :selected
Hi,
I store my selectors in variables or a config object. So I would do something like this for example:
var $manufacturer = $('#manufacturer');
But say, $manufacturer is a select, and I want to use something like this:
$('#manufacturer option:selected')
Is there a way to use a stored selector with "option:selected"?
Thanks!