Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/printing/public_html/system/database/mysql.php on line 6 Upload Your File
$(document).ready( function() {
$("#mce-EMAIL").focus( function() {
if ( $(this).val()=="Email Address") {
$(this).val('');
}
});
$("#mce-EMAIL").blur( function() {
if ( $(this).val()=="") {
$(this).val('Email Address');
}
});
});