This function is not working in IE6 but working in all other browsers. The error is propertyType is undefined and the function does not works for IE6.
My function is,
function propertyType(){}
propertyType.prototype.contactClear=function()
{
$('#error_msg').text('');
$('#error_msg').css("display","none");
$('#name').val(LANG.LBL_NAME+':');
$('#email').val(LANG.LBL_EMAIL+':');
$('#phone').val(LANG.LBL_PHONE+':');
$('#message').val(LANG.LBL_MESSAGE+': '+LANG.LBL_CONTACT_ME);
$("#captchaval").val('');
$("#success_msg").text('');
$('#success_msg').css("display","none");
}
var propertyType = new propertyType();
Can anyone suggest me to solve the issue?
Thanks in advance.