DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Find Next Sibling Of A Element Given A Search Tag Name
Find next sibling of a element given a search tag name
//+ Jonas Raoni Soares Silva
//@ http://jsfromhell.com
function findNext(o, tag){
for(tag = tag.toLowerCase(); o = o.nextSibling;)
if(o.tagName && o.tagName.toLowerCase() == tag)
return o;
return null;
}





