Skip to content

Instantly share code, notes, and snippets.

@ryanahamilton
ryanahamilton / application.js
Created January 12, 2011 22:49
cross-browser input placeholder attribute support with jQuery and Modernizr
$(function(){
if (!Modernizr.input.placeholder){
$('#search input[type="search"]')
.clearValue();
}
});
$.fn.clearValue = function() {
@ryanahamilton
ryanahamilton / Rails Flash Notices and Errors CSS
Created December 16, 2008 15:13
Pretty flash errors and notices that fade
#notice {
border: solid 1px #99cc99;
background-color: #e2f9e3;
color: #006600;
padding: 5px;
margin-bottom: 5px;
}
#notice.error {
border-color: #cc0000;