Questions related to jQuery-1.7.
1
vote
2answers
152 views
TypeError: Property '$' of object [object Object] is not a function in jQuery 1.7.2
I am seeing a number of these errors in my JavaScript error logs:
Object expected
TypeError: Property '$' of object [object Object] is
not a function
Unfortunately, I cannot replicate ...
2
votes
5answers
78 views
handling on no argument in javascript functions
I have little experience in javascript but in other programming languages the following is possible, to set a default value for a missing parameter in a function.
For instance lets say i have a ...
0
votes
2answers
116 views
jQuery 1.7.2 AJAX call throwing NS_ERROR_XPC_NOT_ENOUGH_ARGS error
I have an issue with jQuery 1.7.2 and the ajax function, in that when I call the code below I get the following error in Firefox Firebug console:
NS_ERROR_XPC_NOT_ENOUGH_ARGS: Not enough arguments
...
2
votes
1answer
124 views
JQuery 1.7.2 focus event pops always before blur event on same selector
I've made some code to restrict tab navigation on some elements of my choice. You can see the full code working here : http://jsfiddle.net/M2ELL/2/ it's working fine.
The thing is I want to ...
0
votes
4answers
208 views
Check / uncheck the array of checkboxes
Here is what I have (twitter bootstrap is used here)
#html
<ul id="my-categories">
<li>
<label class="checkbox">
<input checked="checked" name="supername[]" ...
0
votes
0answers
33 views
event execution order in newer jQuery versions
Well there are many questions about this subject in here but all of them are outdated as most of them used the internal data which has been changed since jQuery 1.6 and i have read somewhere in the ...
0
votes
0answers
110 views
insertAfter not doing right in IE
below is my html
<table id="myTable" class="dropdown">
<thead> ........... </thead>
<tbody class="myTbody1">
</tbody>
<!-- insert here ...
0
votes
2answers
69 views
Table element is cutting off while inserting
below is my html
<table id="myTable" class="dropdown">
<thead> ........... </thead>
<tbody class="myTbody1">
<!-- insert here -->
<tbody ...
0
votes
2answers
238 views
inline <script> block with focus not firing second time around when using jQuery html to populate div
I have the following JavaScript code block inside a HTML form that sets the z-index of a <div> to 0 when focus is placed on a form field.
<script type="text/javascript">
...
1
vote
0answers
249 views
Isotope filter is not working with infinite scroll plugin
I am using isotope filter with infinite scroll plug-in in same page, so that here at the same time both are not working perfectly, some design issues reflecting with isotope jQuery file. When I click ...
1
vote
1answer
52 views
My jQuery plugin not getting invoked
I am trying to create a generic function using jQuery but for some reason its not getting invoked. When I added alerts as shown below, the first alert 'My plugin invoked' pops up but the second ...
0
votes
3answers
176 views
reset value of multiple (but not all) form fields with jQuery in one line
Is it possible to reset multiple form fields in one line, or one hit, with jQuery. Note: I don't want to reset all form fields, only a specified whitelist (as below):
// reset some form fields ...
0
votes
0answers
43 views
JavaScript Error in jquery-1.7.2 h.attachEvent is not a funciton
I am using Jquery1.7.2 in my page to support bootstrap and I am getting h.attachEvent is not a function error and my page is changing to IE7 mode while the page is loading. But I am using ...
1
vote
1answer
82 views
Why I am getting error at Internet Explorer 7.0 and 8.0?
I use custom validation for my field
<div class="control-group">
<label class="control-label" for="region">Region*</label>
<div class="controls">
<input type="text" ...
1
vote
1answer
282 views
jQuery capture the change event of a dropdown when change is performed by JavaScript
I would like to be able to detect when the selected value of dropdown has changed using jQuery. The selected value of the dropdown is changed by other JavaScript, so I want to be able to catch this ...
0
votes
2answers
53 views
Using .one() and .on() together - one handler for each element
I have the following HTML:
<table>
<tr>
<td><button class="foo" type="button">Click Me</button></td>
</tr>
<tr>
...
1
vote
2answers
159 views
jQuery .on() not firing event handler
Scenario
I have a list of users, within each list item is a <header> and a <div> wrapper - they are siblings:
<li class="user">
<header>
// ...
...
0
votes
1answer
68 views
How to convert bind() pass through (to on()) to delegate()-like right inside jQuery 1.7.1 code?
I'm trying to make some Drupal 7 content updated by jQuery's load() and it's not being processed by the relevant JS code. The code in question uses bind() and is spread over dozens of Drupal core JS ...
0
votes
1answer
67 views
bind() shouldn't be used, what about it's shortcuts?
From the bind() jQuery API:
As of jQuery 1.7, the .on() method is the preferred method for
attaching event handlers to a document.
And from the change() jQuery API:
This method is a ...
1
vote
0answers
126 views
jQuery Address plugin with jQuery 1.7.x
I have been using jQuery Address for about 1½ years now. This is just to clearify that I know the plugin well, and implementation, events etc. is not an issue.
For a project I have to use redactorJS ...
1
vote
1answer
643 views
Trying to bind a callback by passing in the function throws an error
I just want to fire an event when an input changes value using jQuery 1.7.2 and Backbone.js.
Currently I have the following (which works)
MyView: Backbone.View.extend({
initialize: function() {
...
2
votes
0answers
995 views
slickgrid is adding new row when ANY field has data and tab is clicked
I have an odd problem, that I can find no reference to in SO or otherwise. My grid appears to be working great in all ways except for two critical issues, and two things I would like to do. When ...
0
votes
1answer
390 views
Cannot get slickgrid to save data to hidden field
First of all I have seen SO many answers to a question like this, without sample code that seems to apply to me. I went through the examples on the project wiki page, and none seem to be applicable ...
0
votes
1answer
742 views
jQuery get hash of <a> element using .on() event
Before I get flamed with references to manuals, I have been researching this for quite some time, and keep getting dead ends. Not even sure how to debug it properly. So if any references are cited, ...
1
vote
2answers
155 views
jQuery 1.7 to 1.4
i'm working with drupal and the current version of jQuery for drupal is the 1.4, but in the current HTML the developer used the ON(). function, how can i adapt this for 1.4?
...
0
votes
2answers
707 views
jquery attr('disabled', 'disabled') isn't fully working in IE (doesn't disable click but looks disabled)
I'm having issues with attr('disabled', 'disabled') in internet explorer with jQuery 1.7.1. The buttons appear disabled, however if they're clicked they still execute. In firefox, safari, and chrome, ...
1
vote
2answers
1k views
XPath not working in JQuery selector (JQuery version 1.7.1)
Below is a jQuery selector that works, and the value is set correctly into the text box. Why doesn't the XPath code within the jQuery selector work? I thought jQuery supported XPath.
jQuery code ...
1
vote
1answer
110 views
on() method does not work as live()
I change some methods from $(selector).live('click', function(){}); to $(selector).on('click', function(){}); .
At first it seems to work exactly the same. But when I insert new html on the DOM, the ...
1
vote
3answers
1k views
How to check radio button in jquery new version 1.7.1?
<ul data-role='listview' data-inset='true' data-divider-theme='b'>
<li data-role='list-divider'>
<label>Radio Button</label>
</li>
<li ...
4
votes
2answers
3k views
jQuery on load of dynamic element
I'm trying to do some conditional manipulation of elements that are dynamically added to some container on a page, but I'm missing an event.
Say I have a container:
<div ...
0
votes
1answer
632 views
JQuery 1.7 breaks JQuery Datepicker?
One of the best datepickers around these days I think is still Kelvin Luck's jquery-datepicker
http://www.kelvinluck.com/assets/jquery/datePicker/v2/demo/
However, the latest jquery (jquery 1.7+) ...
1
vote
0answers
547 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
0answers
441 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; ...
1
vote
1answer
1k 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.
...
2
votes
1answer
826 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;
...
2
votes
2answers
353 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 ...
1
vote
2answers
410 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 ...
22
votes
1answer
9k 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 ...
5
votes
2answers
2k 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
3answers
3k 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 ...
1
vote
0answers
318 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. ...
6
votes
3answers
2k 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:
...
9
votes
2answers
431 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 ...
1
vote
2answers
1k 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, ...
4
votes
4answers
307 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
});
...
1
vote
2answers
3k 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
84 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 ...
18
votes
5answers
4k 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 ...
2
votes
2answers
113 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 ...
60
votes
4answers
20k 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 the difference between them and what the benefits are of using this new method.
