The jquery-1.7 tag has no wiki summary.
16
votes
1answer
476 views
jQuery 1.7 - Turning live() into on()
My application has dynamically added Dropdowns. The user can add as many as they need to.
I was traditionally using jQuery's live() method to detect when one of these Dropdowns was change()ed:
...
13
votes
5answers
236 views
When would I use JQuery.Callbacks?
I was looking through new stuff added to jQuery 1.7 and I saw they now have jQuery.Callbacks() http://api.jquery.com/jQuery.Callbacks/.
The documentation shows you how to use jQuery.callbacks() but ...
13
votes
1answer
6k views
jQuery 1.7 is *still* returning the event.layerX and event.layerY error in Chrome
Update: I worked it out - it was a Chrome Extension loading its own version of jQuery (whoops!)...
What am I doing wrong? Am I misunderstanding the problem or is it something else entirely?
On my ...
10
votes
3answers
556 views
What's the difference between jQuery .live() and .on()
I see there's a new method .on() in jQuery 1.7 that replaces the .live() in earlier versions.
I'm interested to know what the difference is between them and what the benefits are of using the newer ...
8
votes
2answers
143 views
jQuery 1.7: converting event shortcuts, such as click(), to on()?
I just found out that jQuery 1.7 introduced a new method, on(). With my brief study, I see it as a consolidated way to bind events, as opposed to decide which one of bind(), live(), and delegate() to ...
6
votes
2answers
942 views
jQuery 1.7 on() and off() methods for dynamic elements
jQuery 1.7's .on() and .off() methods are supposed to replace .live() and such.
I tried it with a dynamic item:
$(".myList").on('click', function(e){
alert('hello world');
});
This is not ...
5
votes
6answers
195 views
jQuery 1.7 .on() method, why is it necessary?
I don't understand why this method exists....
http://api.jquery.com/on/
It seems to me you'd always just do $(el).click() instead of $(el).on('click', function...
3
votes
1answer
112 views
JQuery .on() method with multiple event handlers to one selector
Trying to figure out how to use the Jquery .on() method with a specific selector that has multiple events associated with it. I was previously using the .live() method, but not quite sure how to ...
3
votes
4answers
111 views
What does delegation do versus a plain on('click',…)?
What is the different in performance and the handling of these two different jQuery statements:
Number One:
$('#selector1, #selector2, .class1').on('click', function () {
//stuff
});
...
2
votes
2answers
71 views
jQuery 1.7 .on() and Dynamic Form Catching
I'm having a problem with jQuery 1.7's latest on() function. I'm moving all of my existing live() calls to the new on() function.
In the past I used live() whenever I created a new element or ...
2
votes
1answer
201 views
jQuery 1.7 clientX/pageX undefined
I use jQuery and draggable from jqueryUI. When I update jQuery from 1.6 to 1.7 clientX and pageX attributes disappeared from event variable. Here is an example:
http://jsbin.com/ezulas/7/edit
If in ...
2
votes
2answers
51 views
jQuery: Does `.off()` have the same limitations as `.die()`
I see in the documentation for .die() it says this:
In order for .die() to function correctly, the selector used with it must match exactly the selector initially used with .live().
Does the new ...
1
vote
0answers
64 views
Parseerror and Jquery was not called
I'm using the Jruby version 1.6.6. Jquery verison 1.7.
And got some Data online whit a Ruby applikation:
http://churbackend.impac.ch/news
Now I want to read the Json out of this data.
my request is ...
1
vote
1answer
161 views
JQuery Slider Stopped Working After Upgrade To JQuery 1.7.1
Prior to upgrading to JQuery 1.7.1, both vertical and horizontal slider were working fine. Now that I have upgraded to 1.7.1, everything stops working. Below are my codes.
...
1
vote
1answer
166 views
jquery: unable to print ajax response header (Jquery 1.7.1)
$.ajax({
async:false,
type: 'POST',
url: itemURL,
success: function(data,status,jqXHR) {
responseObj = data;
...
1
vote
0answers
105 views
clickable menubarItem for top level node on new jqueryui menubar?
I'm investigating the new jqueryui menubar:
http://view.jqueryui.com/master/demos/menubar/default.html
The menubar seems to work well, but sometimes you have a menu item that doesn't have children. ...
1
vote
2answers
351 views
jQuery 1.7.1 Ajax and Memory Leak
I already had some problems when I was using jQuery 1.4.2 (http://stackoverflow.com/questions/8158739/ie-memory-leak-and-eval-with-jquery/8176724#8176724)
Now I've updated my jQuery to version 1.7.1, ...
1
vote
1answer
186 views
jQuery 1.7 on() method
I have just downloaded jQuery 1.7 for a brand new project I'm starting.
After reading the the docs I see .on() now replaces .live(). Quote from the docs:
As of jQuery 1.7, the .on() method ...
0
votes
0answers
110 views
jQuery Ajax call causing IE8/7 to crash when data returned from WCF service
I have created a WCF web service. I call this usinq jQuery 1.7.1
try {
$.ajax({
type: "GET",
url: '/_vti_bin/PROJ/WCF.svc/GetDetails',
contentType: "application/json; ...
0
votes
1answer
82 views
Is jQuery BBQ-Plugin still working with JQuery 1.7x?
Short question, but couldn't find a hint to that anywhere: it seems that the jQuery BBQ Plugin is only tested to work with jQuery until v1.4.2. Now the current version of jQuery is v1.7.1 and i wonder ...
0
votes
2answers
69 views
Fire an event using JQuery 'on' when element created?
I'd like to fire an event when an element is added to the document. I've read the JQuery documentation for on() and the list of events but none of the events seem to concern element creation.
I must ...
0
votes
3answers
65 views
jQuery on() method on multiple selectors
Since version 1.7 live is deprecated.
Following example is easy to make compatible with new on method:
$('nav li, #sb-nav li, #help li').live('click', function () {
// code...
});
Using on:
...
0
votes
2answers
176 views
jquery-ui datepicker with jquery .on() event
i'm using asual jquery-address, tabs example and want to add datepicker to the "Extra" tab.
If i'm just adding
$(document).ready(function() {
$( "#datepicker" ).datepicker();
});
it wont work. ...
0
votes
2answers
54 views
.on Click for a dynamically created item
I am appending a <li> and when I try to click it using the new .on event, it doesn't work. I don't want to use the .live event since it might be going to be deprecated in the future.
Here is my ...