You mean like $$('input[type=text]')?

Or more like:

$$('input').each(function(el,i){
    if (el.get('type') == 'text') {
        // do stuff
    }
});
?

 Jul 16, 2:44 pm, Gafa <[email protected]> wrote:
> getting the tag is great but have an issue with the input tag, can I
> get the type of input tag? form the tag property?
>
> thanks

Reply via email to