Profile
Achievement
smoothdzion's Recent Snippets
- All /
« Prev 1 Next »
Same as my other snippet of XHTML to test with for CSS, but also have included message code for different types of messages. Perfect for building and styling applications.
1
4154
posted 15 years ago by smoothdzion
When creating a drop-down menu/hover menu, the subitems will usually go as wide as the parent li. To make them go as wide as the value of their containing li you have to add a white-space: nowrap.
If you still run into issues you may have to ma...
1
1802
posted 16 years ago by smoothdzion
Since :first-child and :last-child aren't compatible with all modern browsers I thought I'd post this snippet. It make automating the class creation easier too instead of having to remember when typing up your HTML or creating logic in your programm...
3
2030
posted 16 years ago by smoothdzion
Great short snippet of code to toggle checkboxes.
Thanks [Josh Nathanson](http://groups.google.com/groups/profile?enc_user=aAOlJRcAAAC7dB8ku2NsRGdjbPtXhPEXHqZiDvCVswhrZ6TQxKj0ww) for putting this simple code together.
6
2042
posted 16 years ago by smoothdzion
Regular menu item adding current class if current url equal menu item destination.
1
2068
posted 16 years ago by smoothdzion
I needed to make menu items that kept the current class based on the controller being accessed.
1
1747
posted 16 years ago by smoothdzion
I needed to copy the value of one field to a couple of others in case users decided to forget to fill them out. Using jQuery and added it to a helper because I was using in multiple places. Created variables to make it more readable.
1
1808
posted 16 years ago by smoothdzion
Adds a browser and operating system class to your HTML Tag.
1
2043
posted 16 years ago by smoothdzion
The code to find all objects from a model and use them as select options.
1
2103
posted 16 years ago by smoothdzion
For separating a list of categories with a comma that are linked. There may be a better way. Leave a comment if you have a better way. This was the first way I found that worked.
This code increments the count 1 at a time. It applies the incre...
1
1720
posted 16 years ago by smoothdzion
Used to create checkboxes to select multiple categories for a post or any other type of applicable situation.
1
1674
posted 16 years ago by smoothdzion
I first posted this code on my http://sitefromscratch.com site, but I decided to repost it up here on snipplr.com with some of the most recent modifications I've made. This code validates through W3C Strict XHTML Standards.
14
4485
posted 16 years ago by smoothdzion
When I use the 960 Grid this is the code I use along with a CSS Reset. I really like Blueprint's default HTML Element styles, but I like the grid of 960.gs. This is a mashup of the code.
2
1758
posted 16 years ago by smoothdzion
This code will allow you to have a full screen iframe with a header like a lot of sites do when navigating outside their site or featuring templates and things. Reference your CSS however you want. The HTML is necessary how it is, but add any addit...
1
3048
posted 16 years ago by smoothdzion
In order to track links out Google requires you add this snippet of JavaScript to your anchor(a) tag. Replace /G1/example.com with whatever you want to use to identify the link.
1
1970
posted 16 years ago by smoothdzion
Reset that I use for all my projects. I've added a class '.ib' at the end to easily add inline-block styling to any element.
1
1782
posted 16 years ago by smoothdzion
First value takes empty input values and adds 'Enter Value'.<br>
Second snippet removes 'Enter Value' when input is focused.<br>
Third snippet re-adds 'Enter Value' if the value is left blank.
2
2124
posted 16 years ago by smoothdzion