    if (!Modernizr.input.placeholder){
      $(document).ready(function() {
 
    $("input[placeholder]")
        .each( function() {
            showPlaceholder( $(this) ); // initialize each control on page load
        } )
        .blur( function() {
            showPlaceholder( $(this) );
        } )
        .focus( function() {
            var $input = $(this);
            if ( $input.val() === $input.attr("placeholder") ) {
                $input.val("");
            }
        } );
 
    function showPlaceholder( $input ) {
        var placeholderText = $input.attr("placeholder");
        if ( $input.val() === "" || $input.val() === placeholderText ) {
            $input.val(placeholderText);
        }
    };
 
} );
    }
