33
votes
8answers
4k views
JQuery is waiting for images to load before executing document.ready
Update:
This bug has been confirmed by at least two others. Even if you dont read my full post - if you're reading this and using JQuery 1.3.1 then stop using it if you're relying on any handlers that …
4
votes
2answers
161 views
How can I assign a property to a jQuery object?
Hi,
It is in my understanding that referencing any DOM element in jQuery via the dollar sign (like this: $("#mydiv")), returns an object.
I am looking to add an additional property to an object as …
4
votes
5answers
2k views
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 …
3
votes
1answer
110 views
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 = …
3
votes
2answers
424 views
jQuery event handlers not firing in IE
I have a list of items on a page with a set of controls to MoveUp, MoveDown and Delete.
The controls sit at the top of list hidden by default. As you mouseover an item row, I select the controls with …
3
votes
5answers
1k views
Selecting all empty text fields in Jquery
How can I find all text fields that have an empty value?
$(":text[value='']")
gives a JavaScript error
I know I can do $(":text"), iterate through and return all fields with $(this).val()==''
I …
3
votes
1answer
835 views
jQuery 1.3 only selecting the first element
I'm not sure if this is a bug or just some crazy new thing in jQuery 1.3 that I'm unaware of, or if I've just gone crazy.
I have a table with 11 checkboxes in it, and I can't select them all using …
2
votes
4answers
164 views
jQuery with ASP.NET WebForms for a poor old server dev…
OK, being a server developer, this Javascript voodoo on the ASP.NET page (based on a master page) rendered on the client is a bit too much for me, it seems :-)
I decided to try to use jQuery to …
2
votes
3answers
151 views
parse variable as JSON w/ jQuery
I am trying to populate a form with a list of questions and radio buttons. When the page is loaded I have a variable that contains the answers they have so far as a string in JSON format:
var json = …
2
votes
2answers
120 views
How do you select more than one element by id?
Hi,
I have two identical click events for two different elements that do not share a class, as such:
$("#element_1").click(function(){
alert("hello world");
});
$("#element_2").click(function(){
…
2
votes
3answers
107 views
Is there an automatic jQuery plugin updater?
Is there some sort of utility available that will check my jQuery plugins and see if they are the latest version? I understand that there is not an easy way to check the version numbers automatically; …
2
votes
3answers
214 views
Finding all classes that match a pattern in an HTML document?
I got to thinking today: what is the best way of getting a distinct (ie no repeats) list of classes used in a document that (preferably) match a pattern (regular expression) pattern or (alternatively) …
1
vote
2answers
307 views
jQuery with ASP.NET WebForms - disabling textboxes
Another jQuery noob question - what am I doing wrong??
I have some HTML markup rendered by ASP.NET 3.5 webforms which looks like this:
<input id="ctl01_cphContent_pnlBasicInfo_chkRC"
…
1
vote
2answers
244 views
JQuery - ref div and href id in div
Hi,
I want to be able to know when someone clicks a link and then reference a var within the link that I assign as a ID. For example given a link like this:
<a class="TrackClick" …
1
vote
4answers
925 views
strange behavior when using jQuery fadeOut function on element with floated element and absolutely positioned element
I am trying to use jQuery to fade out a div, using the fadeOut function. In most cases, it seems to work fine, but in certain cases, not all of the content fades out. If I have an absolutely …
