Skip to main content
The 2024 Developer Survey results are live! See the results

All Questions

0 votes
1 answer
164 views

Getting Javascript critical error in IE11

I have a piece of code in my web application, When I include it, it works well in chrome but in IE11, it throws an critical error. This is the code which is causing the error. If I comment it out, ...
Ranjith Varatharajan's user avatar
0 votes
1 answer
966 views

Unable to get property 'stringify' of undefined or null reference IE 11 ASP.NET

I have an ajax code that takes in 2 string parameters and passes those parameters to a behind code c# method that updates the user record in the database. Here is my code: // ...
Learn12's user avatar
  • 216
0 votes
3 answers
1k views

ASP.NET JQuery .click() not working in IE11

The following .click()-method is fired in Chrome without problems. In Internet Explorer it is only fired if I refresh the page (F5). If I access the page by entering the url (or redirected by a ...
sampa's user avatar
  • 565
3 votes
1 answer
2k views

Open a new InPrivate Browser Window with Button Click [duplicate]

I have no idea if this is even possible, but I figured I'd ask. I have the need to open a new InPrivate browser window from within a webpage, on a button click. I'd like to navigate to a webpage, but ...
Matt's user avatar
  • 115
0 votes
1 answer
373 views

Button is not immedeatelly working after postback in IE

I have dynamically added update panel with textbox search, button handeling enter key and with gridview on my page. When I search by pressing the key (postback in update panel proceed), edit buttons ...
JayDee's user avatar
  • 160
3 votes
1 answer
680 views

Button not change to disabled when dialog appear again in IE11

I have a problem with the disabled property of a button in ASP page. It only happens in IE 11 and is OK in other browsers. These are my action steps before the problem appears: 1: I click the ...
Nghĩa Đào Trọng's user avatar
0 votes
2 answers
100 views

jQuery css property not retrieving correct value

I have a repeater control in my web app which consists of a dropdown, I am manipulating this dropdown behaviour (by adding some custom styles) on the change event. The problem is when I am using the ...
Rahul Singh's user avatar
  • 21.7k
0 votes
0 answers
525 views

what is equivalent of document.createEventObject() in jquery?

I am trying to replace document.createEventObject() with a jquery to or in IE 11 var ev = document.createEventObject(); ev.item = currSelectedItem; document.event = ev; Could you please ...
Grasshopper's user avatar
  • 1,798
0 votes
0 answers
2k views

Internet Explorer 11 automatically adding code to js function

The .js file contains the code: (function ($) { "use strict"; $("#owl-demo").owlCarousel({ slideSpeed: 50, paginationSpeed: 400, singleItem: true, autoPlay: true, });})(jQuery); It ...
Farhan Aslam's user avatar
0 votes
1 answer
228 views

ASP.net dropdown list postback dosnot work inside jquery and control panel

I call an asp webpage inside JQuery code as following : $("#zr_users_edit").click(function () { $("#panel-label").text("Edit User Account") $("#display-panel").stop().animate({ left: ...
Twins Code Inc.'s user avatar
0 votes
2 answers
6k views

jQuery Not Working in IE11 On Live Server

I'm using jQuery for the first time and so I've added the jQuery 2.1 library to my ASP.NET project and referenced it from the Master Page like so: <script type="text/javascript" src="Scripts/...
Philip Stratford's user avatar