-2

I am using the plugin jquery-1.4.1.js and jquery-1.4.1.min.js .

I have a function like this

$(document).ready(function () {
            $('#DropDownList1').change(function () {
                alert('changed');
            });
        });

This works fine in firefox and chrome.But not working in IE6 IE7. But one thing i know IE supports Activexobjects. Is there any way to convert jquery objects to Activexobjects. please help.

1 Answers1

1

I think you are including the jQuery twice. jquery-1.4.1.js and jquery-1.4.1.min.js should essentially be the same with jquery-1.4.1.min.js being the compressed version of code. Try getting rid of one version and you should be home.

defau1t
  • 10,593
  • 2
  • 35
  • 47