jquery

jquery wait cursor while loading html in div

I want to show to the user a state that the result is loading. How can I change cursor or gif while loading result in div with $MyDiv.load("page.php") ? ...

On Item Added event on an Drop Down List (Option selector)

Given a drop down list, is there any way to subscribe a javascript even which will be fired when a new item is added to the list? I'd like something like the following to work $("select").itemAdded(function(value, text) { alert(text + " has just been added to the list of options"); }); $("select").append($("<option></option").va...

How to move div with the mouse using jquery ?

I need to be able to move a div with my mouse and store the new pos of the div in database to remember the display. How can I do it? ...

jQuery: How to match first child of an element only if it's not preceeded by a text node?

I'm trying to match the h4 of a div (using jQuery) so that I can remove it's top margin. However, I only want to match the h4 if it has no text on top of it. For example, match this: <div> <h4>Header</h4> ... </div> but not this: <div> Blah blah blah. <h4>Header</h4> ... </div> The best code I could come up with in jQue...

How to trigger $().ready() in jQuery?

Using jQuery, is there a way to retrigger the document.ready trgger at some point after a page has loaded? update: jQuery sheds them once they are run. In my experiments it looks like jQuery will run a ().ready callback as soon as it is encountered once the initial ready event is triggered. ...

jQuery .find() doesn't return data in IE but does in Firefox and Chrome

I helped a friend out by doing a little web work for him. Part of what he needed was an easy way to change a couple pieces of text on his site. Rather than having him edit the HTML I decided to provide an XML file with the messages in it and I used jQuery to pull them out of the file and insert them into the page. It works great... In F...

Jquery: Difference between .bind and other events

What is the difference between the following lines of code, or are they just 2 different ways to write the same thing: $("p").click(function() { some code here }); $("p").bind("click", function(){ some other code here }); Am I over simplifying this? Because if you wanted to bind more than one event you could just chain the events, co...

How can I fade-out a row (TR) in IE6 or 7

I'm using JQuery to fade-out rows (TR) when the user clicks a Delete button on a row (TR). By fade-out, I mean the entire row (TR) background-color is changed to an off red and then it fades to white and disappears. This is a great little animation for showing the user an instant reaction for what the did. The JavaScript looks like th...

ASP.net - Multiple Upload with jQuery Multiple File Upload Plugin

I know how to upload with ASP.net's FileUpload control. What I want to do is use this jQuery Multiple File Upload Plugin to upload multiple files. Here is exactly what it does when multiple files are selected for upload: <input type="file class="multi MultiFile" id="MultiFile1_F3" name="file1[]" style="position: absolute; top: -3000px...

Does JQuery have a way to unbind events in random HTML string?

I'm using JQuery to set the HTML inside a div. Something like this: $(div).html(strHtmlBlob); strHtmlBlob is a chunk of HTML returned via Ajax from the server. After, it's assigned, I set up some events for elements in the new HTML blob by doing this: $(div).find("a").click(a_ClickHandler); That all works perfectly fine. The pro...

How much intellisense should I expect for jquery in VS2008?

I read ScottGu's blog entry (http://weblogs.asp.net/scottgu/archive/2008/11/21/jquery-intellisense-in-vs-2008.aspx) a while back, and it seems to imply more functionality than I'm seeing. I have VS2008 and its service pack installed, and I am using a new MVC project with the RC1 version of asp.net MVC. I referenced the jquery-1.2.6.js ...

JQuery toggle VAT switching

Hi , I want to implement a VAT switcher as you can see on http://aria.co.uk top right corner although I want to do it on the client side only. Below is something I came up with, although I need to: switch VAT back and forth (my example goes just one way) save and read the toggled state from a cookie for persistency have it unobtrusiv...

Using JQuery to call a WebMethod

I am having trouble getting inside my Search WebMethod from my JQuery call. Maybe someone could help to point me in the right direction. I also packed up everything into a zip file incase someone wants to check it out for a closer look. http://www.filedropper.com/jsonexample Thanks Ryan <%@ Page Language="VB" AutoEventWireup="fal...

jquery/javascript wait for a function to complete

I have script that performs from DOM manipulation to change the way a div looks. The way the application is, when the page loads, the div is rendered in its original state, the function manipulates the DIV. The problem is it renders the original div before rendering the changed div. I tried: //Make div invisible //Call function to cha...

jQuery parents() and parent().parent() only see one level up?

Hi All, I am having some issues with getting the list of parents of an element with jQuery. Perhaps I am missing something, but I have a link inside several nested divs, and am trying to get a list of siblings of the parent's parent. I only seem to be able to go one level up from the link though, so I can't The HTML is as follows: <...

JQuery - How to add a class to every last list item?

Howdy Guys, Got some code here that isn't working: $("#sidebar ul li:last").each(function(){ $(this).addClass("last"); }); Basically I have 3 lists and want to add a class (last) to each item appearing last in each unordered list. <ul> <li>Item 1</li> <li>Item 2</li> <li class="last">Item 3</li> </ul> Hope ...

is there a javascript (or jquery) short cut for "function(){return false;}"?

It seems like I type "function(){return false;}" some what too frequently too prevent actions from happening... is there a short cut? ...

Why does jQuery has a "window=this" at the very begining and say it would speed up references to window?

When I open jQuery's source code I find this line. var // Will speed up references to window, and allows munging its name. window = this Why and how this line will speed up? ...

How to figure out what got clicked?

Hi, In jquery, how can I figure out what object was clicked? Is there a way to alert(...) the type of tag? like if it was an <a href> or a <img> etc? ...

Tricky jQuery operation, not sure if I am using 'this' property either.

Using jQuery, I am binding some image tags with a click event like this: $('.imageClass > a > img').bind('click', onImageClick); this.onImageClick = function() { $.post("/blah/123", { test : 'a' }, function(data) { myCallback(this, data); }, "json"); } this.myCallback(event, data) { alert($(event).parent.attr("href")); }; My...