I am trying to map several CSS attributes in Mootools [version 1.11], as in this element:
<input type="radio" value="dev" name="radio_server">
I would like to map this element which has type = 'radio' and value = 'dev' attributes. Tried this, but it does not work.
$$('input[type=radio][value=dev]')
also does not work
$$('input[type=radio,value=dev]')
$$('input[type=radio && value=dev]')
on this page: http://api.jquery.com/multiple-attribute-selector/ has a jQuery solution, is there something like Mootools?
source
share