Let me make this same command in jQuery
$('aplicacao').filterByTagName(searchValue);
currently is in prototype would like to see more on jQuery
Thank you very much
Let me make this same command in jQuery
$('aplicacao').filterByTagName(searchValue);
currently is in prototype would like to see more on jQuery
Thank you very much
$('#aplicacao ' + searchValue);
And, thanks to mkoistinen:
$(searchValue, '#aplicacao');
$('#aplicacao').find(searchValue);
These two options are better if you'd like to avoid hacking strings together, but the first is better if you want to follow CSS conventions.
Well I'm not a pro on protorype and so, not sure what aplicacao refers to, but if it would be an id:
$('#aplicacao').find('h1');
(for example)