Hi
I updated this JS file a bit: /templates/ja_phio/js/template.js
if (formContact.length > 0) {
$('#jform_contact_name', formContact).attr('placeholder', $('#jform_contact_name-lbl').text());
$('#jform_contact_email', formContact).attr('placeholder', $('#jform_contact_email-lbl').text());
$('#jform_contact_emailmsg', formContact).attr('placeholder', $('#jform_contact_emailmsg-lbl').text());
$('#jform_contact_message', formContact).attr('placeholder', $('#jform_contact_message-lbl').text());
if ($('.ie8').length > 0) {
$("input[placeholder], textarea[placeholder]", formContact).each(function (i, e) {
if ($(e).val() == "") {
$(e).val($(e).attr("placeholder"));
}
$(e).blur(function () {
if ($(this).val() == "")
$(this).val($(e).attr("placeholder"));
}).focus(function () {
if ($(this).val() == $(e).attr("placeholder"))
$(this).val("");
});
});
}
}
Kindly check.