Questions tagged [jquery-1.3.2]

For issues relating to using jQuery, version 1.3.2

jQuery 1.3.2 was relesed on February 20, 2009.

Key features:

  • Elements Returned in Document Order
  • .live() Can Now Prevent Bubbling
  • :visible/:hidden Overhauled
  • .height()/.width() Overhauled
  • Selector Speed-up in IE
  • .appendTo()/etc. Now Return Inserted Elements

See also the official homepage and the release notes.

31 questions
23
votes
5 answers

Is it possible to Stop jqGrid row(s) from being selected and/or highlighted?

I've looked at the documentation but I've been unable to find an answer. Is there a way to prevent a row from being highlighted when selected? That or even a way to stop the row being selected at all. I like the "hoverrows: true" option, but…
Mike
  • 5,568
  • 11
  • 31
  • 45
22
votes
6 answers

Select first sibling

I'm trying to select the inner value of the first sibling - using jQuery - in an environment where I cannot alter the html markup. I have the following: 3 bob smith bob@example.com …
Mike
  • 5,568
  • 11
  • 31
  • 45
15
votes
2 answers

slideToggle and :visible

When using the sliderToggle method, the :visible expression never seems to return anything other than true. If I manually use show/ hide in conjunction with :visible expression it'll work just fine. Example of failure: jQuery(".fileNode…
Kieron
  • 26,748
  • 16
  • 78
  • 122
6
votes
4 answers

How do i run the .animate function in jQuery forever?

$(this).css("left","100px"); function endless(){ $(this).animate({ left:'-=100px', },{ easing: "linear", duration: 5000, complete: function() { $(this).css('left','100px'); endless(); } …
Julian Weimer
  • 2,605
  • 4
  • 22
  • 23
5
votes
1 answer

Why am I getting a jQuery 'ui.element is undefined' error?

I have the following: $('#widgets ul').sortable( { connectWith: ['#widgets ul'], opacity: 0.7, start: function(e, ui) { fromWidgetPosition = ui.item.prevAll().length + 1; fromRowId = ui.element.attr('id'); I just upgraded jQuery from…
Chad Johnson
  • 21,215
  • 34
  • 109
  • 207
4
votes
5 answers

JQuery 1.3.2 vsdoc does not produce Visual Studio intellisense

In past i have worked with JQuery 1.2 vsdoc file which generates intellisense for vs2008 sp1. I have recently downloaded latest version of JQuery 1.3.2 and JQuery 1.3.2 vsdoc file. When i tried to get intellisense for jquery in vs2008 - I am getting…
bugBurger
  • 6,950
  • 9
  • 32
  • 39
3
votes
4 answers

What are the advantages in including Jquery library from google's ajax api library?

Possible Duplicate: Why should I use Google's CDN for jQuery? I have seen many of the web programmers including Jquery library from google's ajax api library. Is there any real advantage in not hosting those libraries in our server other than…
3
votes
1 answer

"elems.sort is not a function" in jQuery 1.3.1

I needed to randomize answer choices for a little game I'm building using html/jquery. I came across a jQuery Randomize plugin shared by Russ Cam on Stack Overflow on Oct. 2009 (see here: Randomize a sequence of div elements with jQuery). This…
Kirkman14
  • 1,506
  • 4
  • 16
  • 30
3
votes
3 answers

Invalid procedure call or argument IE issue when iterating through document.styleSheets using $.each()

I've written this code that iterates over all global style sheet rules and stores them in an array/object. I use this dictionary-like object later to change global rules rather than setting styles on individual elements. Following code breaks in IE8…
Robert Koritnik
  • 103,639
  • 52
  • 277
  • 404
2
votes
2 answers

jQuery core tabs script - multiple instances?

I have the following jQuery script on my site to switch tabs without reloading the page. I'm using jQuery core v1.3.2 (NOT jQuery UI)