Questions tagged [jquery-2.0]

jQuery is a fast, small, and feature-rich JavaScript library. jQuery 2.0 is intended for the modern web. Which does not support older browsers (IE 6,7,8). Its light and more efficient

jQuery is a fast, small, and feature-rich JavaScript library. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax much simpler with an easy-to-use API that works across a multitude of browsers. jQuery 2.0 is intended for the modern web. Which does not support older browsers (IE 6,7,8)

More Details
Library Link

41 questions
16
votes
2 answers

Detecting browsers that are not supported by jQuery (2)

Forgive me if there is an obvious answer to this question, but I haven't been able to find it. I am considering switching over to jQuery 2 and, although I'm not concerned about supporting older browsers, I would like to be able to tell users with…
EleventyOne
  • 7,300
  • 10
  • 35
  • 40
13
votes
4 answers

JQuery 2.0.3 Chrome Error Resources must be listed in the web_accessible_resources manifest key in order to be loaded by pages outside the extension

I'm building out an HTML5 page. I'm using JQuery in it, and I'm getting the following two console errors. Denying load of chrome-extension://kkelicaakdanhinjdeammmilcgefonfh/js/jquery.min.map. Resources must be listed in the web_accessible_resources…
LoneWolfPR
  • 3,978
  • 12
  • 48
  • 84
9
votes
2 answers

Changing css with jQuery 2.1+ ignores transition property

I am switching from jQuery 2.0.3 to 2.1.0. I noticed that in v2.1.0 the css transition property is ignored when setting css properties directly $('#someElement').css('width','100px'); In v2.0.3 , my element will maintain it's css transition,…
Eric Phillips
  • 866
  • 7
  • 23
7
votes
4 answers

Jquery 2.1.1 in IE9 get error: 0x800a01b6 - Microsoft JScript runtime error: Object doesn't support property or method 'addEventListener'

Using Visual Studio 2013, I migrated a hybrid Asp.Net Webforms/MVC 3 web application to Asp.Net Webforms/MVC 5.1. As part of the migration I upgraded Jquery from 1.9.1 to 2.1.1, using the NuGet package manager. When I run the application in the…
Tom Regan
  • 3,580
  • 4
  • 42
  • 71
6
votes
2 answers

Twitter Bootstrap and jQuery 2.0 compatibility

Is twitter bootstrap 2.3.X or 3.0.0-wip compatible with jQuery 2.x? If not is there any intention to upgrade compatibility the future?
AndrewMcLagan
  • 13,459
  • 23
  • 91
  • 158
5
votes
1 answer

Attaching Click event to Bootstrap Toggle Radio Buttons

I have a boostrap toggle with the code below. It is visually working right
4
votes
1 answer

jQuery 2.0 dropped support for IE6/7/8, so how long will the 1.x branch be maintained?

jQuery 2.0 has just been released and completely dropped support for Internet Explorer 6, 7 and 8 [more...]. Currently [April 2013] the 1.9.x branch is still maintained, and probably will receive some improvements and bugfixes [1.10 will come!], but…
3
votes
1 answer

unlike jquery 1 and 2, jquery 3 ajax handler is executing newly added html+js only after completing handler code

I've made a jsbin to show the problem: http://jsbin.com/dexeqiz/edit?html,js,output having this html:
and js: $.get('...', function(){ $('#scripts') …
Omu
  • 69,856
  • 92
  • 277
  • 407
3
votes
2 answers

queue a number of effects synchronously with jquery

Is there are more readable way to queue a number of asynchronous effects that they are executed synchronously? var element1 = $('#div1'); var element2 = $('#div2'); $(element2).hide(); $(element1).on('click',function(){ …
Elisabeth
  • 20,496
  • 52
  • 200
  • 321
2
votes
1 answer

Datatable draw() method not working on column filter

After spending some days trying many solutions I've found on the Internet I'm asking here. I have form which display a table containing datas when search button is clicked. The table has 8 columns and on 3 of them I want to add a text input with…
dtlvd
  • 457
  • 1
  • 8
  • 21
2
votes
1 answer

table cell input returns as undefined

I am using jquery 2 I need to populate a multidimensional array with values in a table Here is my code (First column is hidden) html:
dfmetro
  • 4,462
  • 8
  • 39
  • 65
2
votes
1 answer

Does jQuery 2.x support Internet Explorer 11 Enterprise Mode?

We are currently starting development of a new enterprise intranet framework. In the conceptual phase the question arose, whether we can incorporate the latest version of jQuery 2.x, bearing in mind that IE11 might run in Enterprise Mode. Enterprise…
Windwalker
  • 1,915
  • 5
  • 23
  • 44
2
votes
1 answer

Is Twitter Boostrap 3.x compatible with Jquery 2.x?

I started using jquery 2.1.1 on a site that uses Bootstrap 3.x, and now bootstrap carousels won't work. Chrome web dev console says "Uncaught ReferenceError: jQuery is not defined " Any help would be great!
Cayde 6
  • 617
  • 6
  • 19
2
votes
1 answer

JQuery Mobile panel still not compatible with JQuery 2.0.3?

I am having a problem while loading JQM panels. I am using Jquery v2.0.3 and JQM v1.3.2. JS console reports this as the problem: Uncaught TypeError: Cannot read property 'options' of undefined line# jquery.mobile-1.3.2.js:10330 I googled and found…
Mo3z
  • 2,138
  • 7
  • 21
  • 29
1
vote
1 answer

jQuery: Custom event doesn't run

I've currently come to a jQuery problem which cost me multiple hours so far and I still can't figure out what's going wrong exactly. Long story short - my code is part of a memory game written in Play Framework. jQuery file…
lenn121
  • 13
  • 2
1
2 3