Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
2  
Would now be a good time to remind people that IE6 is to old / buggy / crap to care about? :) – webnoob Dec 10 '12 at 11:45
3  
@webnoob IE6 may be a nuisance but sometimes we still need to cater for it. If you are hired by a client who has a large proportion of users using IE6 (often out of a lack of choice) then you should develop for that browser if you are doing your job right. In an ideal world IE6 would have gone, but it hasn't. – drmonkeyninja Dec 10 '12 at 11:52
Is that really all your code? And where does the error occur? – Jack Dec 10 '12 at 11:57
This function relates to clear, when i clear the form the script error occurs as 'propertyType is undefined' in IE6 – aruna Dec 10 '12 at 12:05
@drmonkeyninja - Don't worry I understand, most of the governmental offices within the UK still use it so I know it's still required. Still, the fact we WILL support it means they don't have to stop using it which is bad for the industry. Anyways, not the time or place :) – webnoob Dec 10 '12 at 13:22

2 Answers

This error may occur if you are attempting to clear or hide the elements before they loaded into the DOM.

share|improve this answer
Thanks for your reply. Can you please explain me in detail? – aruna Dec 10 '12 at 11:59
Use window.onload function which also can be used to avoid this issue occurence. – User1674987 Dec 10 '12 at 12:06

I don't have IE6 to verify this behaviour, but the following looks very suspicious:

var propertyType = new propertyType();

Using the same variable name for both a constructor and an instance is not advisable; you should change the variable name for the instance:

var pType = new propertyType();

Or, the other way around:

function pType(){}

pType.prototype.contactClear=function() { ... }

var propertyType = new pType();
share|improve this answer
Thanks for your reply. But if i change the variable name i could not find any action in other browsers too. – aruna Dec 10 '12 at 12:11
@aruna Well, I don't know what the rest of your code; otherwise, rename the propertyType function and prototype instead. – Jack Dec 10 '12 at 12:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.