jQuery(function($) {
    //if html5-css3-emulator has been loaded (IE<10), execute placeholder script on inputs and textarea
    if($.fn.placeholder){
        $('input, textarea').placeholder();
    }
});