Questions tagged [jquery-1.3]

jQuery 1.3 introduced new CSS selector engine, live events, jQuery event object, HTML injection rewrite and removed browser sniffing

jQuery 1.3 was released on January 14th, 2009. The main features introduced with this version are:

  • New CSS selector engine – nicknamed Sizzle.
  • Live Events: jQuery now supports “live events” – events that can be bound to all current – and future – elements.
  • jQuery Event Object: this object completely encapsulates all of the functionality normally found in a W3C-compliant event object implementation and makes it work smoothly across all browsers.
  • HTML Injection Rewrite: all of the code related to injecting HTML into a document (such as the append, prepend, before, and after methods) has been overhauled.
  • No More Browser Sniffing: jQuery no longer uses any form of browser/userAgent sniffing internally. Instead a technique called feature detection is used where a particular browser feature or bug is simulated to verify its existence.

Resources

39 questions
0
votes
1 answer

How to use jCarousel with multiple versions of jQuery

I am using jCarousel (https://sorgalla.com/jcarousel/) for a gallery. If I use only one version of jQuery, only version 1.12.4 in my case, everything is working correctly for me. With this code, everything is perfect:
Jaime Montoya
  • 6,915
  • 14
  • 67
  • 103
0
votes
1 answer

jQuery: running success in 1.3.2 but not in 1.4.2

Nothing is wrong, as soon as i change the lib to 1.3.2 my on success stuff works just fine? How comes? Not even the alert with TEST appears.. Here's the code this is happening on: function crop() { $.ajax({ type: "POST", …
Karem
  • 17,615
  • 72
  • 178
  • 278
0
votes
2 answers

How do I find an active class and move it to a parent container using jQuery?

When an active class is present on the , I would like to move that class up to it's highest parent; the
0
votes
2 answers

jquery firing issue

I am using a function to equalise the height of li tags returned from a database. I am also using jquery to assign certain li new classes dependant on their position in a row. Basocally my problem is that the positioning part of the jquery statement…
DanC
  • 1,297
  • 4
  • 24
  • 42
0
votes
1 answer

Jquery tabs & calendar not binding properly

I'm implementing a page jquery tab toggle that loads content from hidden divs on the page. on one of the hidden pages i have a calendar popup (part of the jQuery.UI api. this works find on it's own page but when i add it to a hidden block and then…
BandsOnABudget
  • 3,966
  • 2
  • 17
  • 19
0
votes
1 answer

Problem with removing/animating a YouTube flash video-player container

I used the code from the following question to insert a YouTube video into a page: How to resize a YouTube player, from thumbnail size to 'normal' size. Given the following html:
Thoughts of Sacrament
David Thomas
  • 249,100
  • 51
  • 377
  • 410
0
votes
3 answers

Making jQuery statements shorter

I have the following jQuery statement which works fine but I was wondering if it could be shortened and if making it more concise would speed up performance or not? The reason for the strange starting tag is that it is for a wordpress theme. Cheers…
DanC
  • 1,297
  • 4
  • 24
  • 42
0
votes
1 answer

jquery child matching too much?

I am importing a feed into Tumblr and because of the formatting of the site, it shows too many pictures. So to fix that, I thought I would use jquery to remove extra elements. It turns out that the imported feed uses tables. No worries, I made a…
Jauder Ho
  • 1,345
  • 1
  • 16
  • 22
-1
votes
1 answer

i need help converting my jquery 1.3 code to jquery 2.2.2

So i have a chatroom site built with php and jquery but it is using 2 different versions of jquery and some of the new pages i have added conflict with each other (even though i had both jquery versions linked at the same time on the other pages)…
1 2
3