Click here to Skip to main content
15,885,216 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
our website is only running in google chrome..? the particular j query not supported in internet explorer 7,8,9...

JavaScript
<script>
    $(function () {
        var skils = ["Ahmedabad ", "Ambattur", "Aluva", "Banglore", "Baroda", "Calicut", "Chennai", "Coimbatore", "Delhi", "Gandhinagar", "Gujarat", "Hyderabad", "kadavanthra", "Kochi", "Mumbai", "Manglore", "NCR", "Noida", "Palakkad", "Pattambi", "Pune", "Raipur", "Thrissur", "Trivandrum ", "Vapi", "Visakhapatnam", "Vijayawada"];
        $("#txt_Present_job_location").autocomplete({
            source: skils
        });
    });

</script>



IT SHOWING THIZ MESSAGE:

Microsoft JScript runtime error: Object doesn't support this property or method

$("#txt_Present_job_location").autocomplete({
source: skils


showing thiz message


need a solution
Posted
Updated 19-Feb-14 23:24pm
v3
Comments
thatraja 20-Feb-14 2:19am    
Need details like error, etc.,
[no name] 20-Feb-14 4:19am    
Microsoft JScript runtime error: Object doesn't support this property or method

$("#txt_Present_job_location").autocomplete({
source: skils


showing thiz message
thatraja 20-Feb-14 4:46am    
Update your question with this details, so your question will come at top again

1 solution

If you are referencing jQuery from the 2.x version it does not support IE below 9x. You have to use a 1.x version.

Here
 
Share this answer
 
Comments
[no name] 20-Feb-14 11:56am    
am using 1.10.2 and 1.9.2,1.8.2 version jqueries..
AnvilRanger 20-Feb-14 14:24pm    
Are you referencing jQuery UI also? The autocomplete functionality is not part of the base jQuery library.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900