Questions tagged [jquery-1.7]

jQuery (version 1.7) is a fast, small, and feature-rich JavaScript library

jQuery version 1.7 was released on August 9th, 2012.

New features

Removed features

  • event.layerX and event.layerY
  • jQuery.isNaN()
  • jQuery.event.proxy()

See also the official homepage and the release notes.

77 questions
2
votes
1 answer

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 "decorate" the parent div where the focus occurs. For that…
Arno 2501
  • 8,921
  • 8
  • 37
  • 55
2
votes
0 answers

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 which requires jQuery 1.7.x and above. This is…
DeadClass
  • 31
  • 5
2
votes
0 answers

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 replying, I don't expect responses for all concerns,…
MaurerPower
  • 2,046
  • 7
  • 26
  • 48
1
vote
1 answer

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 new elements inserted with the same selector, they…
elranu
  • 2,292
  • 6
  • 31
  • 55
1
vote
3 answers
1
vote
0 answers

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 like: var test = $.ajax({ type: "GET", …
1
vote
0 answers

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; charset=utf-8", data: myid, success:…
John
  • 487
  • 8
  • 16
1
vote
1 answer

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. $("#HorizontalScrollBar").slider({ change: HorizontalHandleChange, …
asyadiqin
  • 1,637
  • 3
  • 19
  • 25
1
vote
0 answers

clickable menubarItem for top level node on new jqueryui menubar?

I'm investigating the new jqueryui menubar. The menubar seems to work well, but sometimes you have a menu item that doesn't have children. I modified the above default demo to have a top level clickable menu item. The mouseover shows the correct…
JStark
  • 2,788
  • 2
  • 29
  • 37
1
vote
2 answers

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, and I have the memory increasing slowly after…
Fabito
  • 1,165
  • 2
  • 13
  • 30
1
vote
1 answer

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 provides all functionality required for attaching event…
mtwallet
  • 5,040
  • 14
  • 50
  • 74
1
vote
2 answers

To create tr & td dynamically and append to table. Onclick pass the json selected object

To append rows to existing table. On each onclick had to pass the selected object. function populateResult(data, resultElementId){ $.each(data, function(i,row){ $tr = $(''+ row.name+''…
user630209
  • 1,123
  • 4
  • 42
  • 93
1
vote
2 answers

using jquery-1.10.2.min and jquery-1.7.1.min in one template

I am working on project that used a template work with "jquery-1.10.2.min". And I use Lucene.net for my search. Lucene.NET work with "jquery-1.7.1.min". when I use "jquery-1.7.1.min" for the template some section working bad, and when I use…
1
vote
0 answers

How to get rid off the warning/error "Use of getPreventDefault() is deprecated. Use defaultPrevented instead."?

I'm using jQuery v1.7.1 in my project. I'm getting following warning/error in Firebug console: Use of getPreventDefault() is deprecated. Use defaultPrevented instead. in a file jquery.js line no.3432 If I click on this file name I get following…
PHPLover
  • 1
  • 51
  • 158
  • 311
1
vote
1 answer

jquery 1.7 cant submit the form to specific url

i want to submit my form to a specific url using $.post, i followed exactly what the tutorial told me. this is my code $(document).ready(function () { $("#fLogin").on('submit', function (e) { var errorCount = 0; …
Marco Dinatsoli
  • 10,322
  • 37
  • 139
  • 253