Skip to content

Instantly share code, notes, and snippets.

@alexmoleiro
Created July 2, 2014 13:24
Show Gist options
  • Select an option

  • Save alexmoleiro/621f50fb9baf8f359153 to your computer and use it in GitHub Desktop.

Select an option

Save alexmoleiro/621f50fb9baf8f359153 to your computer and use it in GitHub Desktop.
Navegar por todos los elementos del DOM con un atributo determinado
function getTldPorId()
{
var IDs = [];
$("#widgetBusqueda").find("[tld]").each(function() {
IDs.push($(this).attr("tld")); //IDs.push(this.id);
});
return IDs;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment