Never been to DZone Snippets before?

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

About this user

Trek G.

« Newer Snippets
Older Snippets »
Showing 1-2 of 2 total  RSS 

Navigation HTML/CSS

#nav ul {
margin: 0;
padding: 0;
list-style: none;
overflow: hidden;
}
#nav ul li {
float: left;
margin: 0;
padding: 0;
}
#nav ul li a {
float: left;
display: block;
padding: .8em 1em .8em 1em;
margin: 0;
text-decoration: none;
}

Prototype.js Unobtrusive JS

document.observe("dom:loaded", function() {
$$('selector').each(function(element) { new ClassThing(element) });
});
« Newer Snippets
Older Snippets »
Showing 1-2 of 2 total  RSS