Hello all,
I saw the following usage of jQuery selector:
$('[value=""]', event.target).remove();
I can guess the meaning of this statement is to remove the option value="" from the selector event.target.
The pattern looks like $(A, B). What kind of selector rule is used here in jQuery?
Thank you