[jQuery] (treeview)

2009-10-13 Thread Donald J. Organ IV
Is it possible to expand all the parents of a given node based on an ID? I have a large nested tree view that the selected values can actually be 6 or 7 levels deep and I would love to be able to pass an ID to the treeview to show and have all the parents expanded.

[jQuery] Jquery T-Shirts

2009-09-10 Thread Donald J. Organ IV
Is there an official place to get JQuery T-Shirts / Mugs? I see alot of individuals that have created one off stores, but I would like to buy from an official source if one exists.

[jQuery] Re: Edit list of items in selector.

2009-01-26 Thread Donald J. Organ IV
Take a look at this: http://www.texotela.co.uk/code/jquery/select/ - Original Message - From: "tom" To: "jQuery (English)" Sent: Monday, January 26, 2009 9:25:01 PM GMT -05:00 US/Canada Eastern Subject: [jQuery] Edit list of items in selector. Hello All, I am trying to reset the lis

[jQuery] Re: Adding many elements to a element

2009-01-23 Thread Donald J. Organ IV
Take a look at this: http://www.texotela.co.uk/code/jquery/select/ - Original Message - From: "roosteronacid" To: "jQuery (English)" Sent: Friday, January 23, 2009 9:44:27 AM GMT -05:00 US/Canada Eastern Subject: [jQuery] Adding many elements to a element Consider the following:

[jQuery] Re: New jQuery Cheat Sheet for the iPhone

2009-01-16 Thread Donald J. Organ IV
Oddly enough I actually just found this as well and downloaded it today...seems to work well. Its only $.99 - Original Message - From: "blankfrank" To: "jQuery (English)" Sent: Friday, January 16, 2009 2:25:07 PM GMT -05:00 US/Canada Eastern Subject: [jQuery] New jQuery Cheat Sheet f

[jQuery] Re: How do I abort a function?

2009-01-16 Thread Donald J. Organ IV
return; - Original Message - From: "Rick Faircloth" To: jquery-en@googlegroups.com Sent: Friday, January 16, 2009 2:34:39 PM GMT -05:00 US/Canada Eastern Subject: [jQuery] How do I abort a function? If I want to abort a function based on a condition, what is the command to do that?

[jQuery] jWYSIWYG

2009-01-09 Thread Donald J. Organ IV
Anyone using jWYSIWYG?? http://projects.bundleweb.com.ar/jWYSIWYG/ I dont have a problem getting it to convert a textarea to a WYSIWYG but it doesnt take existing content as well as I have tried passing {html: 'test 1234'} and that does not seem to work either..

[jQuery] Re: Detecting a click "off" an element

2008-11-19 Thread Donald J. Organ IV
Sounds like you want a sticky hover. - Original Message - From: "jonhobbs" <[EMAIL PROTECTED]> To: "jQuery (English)" Sent: Wednesday, November 19, 2008 12:17:55 PM GMT -05:00 US/Canada Eastern Subject: [jQuery] Detecting a click "off" an element HI, I'm trying to make a layer popup

[jQuery] Re: Loading Mask

2008-10-16 Thread Donald J. Organ IV
oading Mask Try "BlockUI" >> http://www.malsup.com/jquery/block/ On Oct 16, 12:04 pm, "Donald J. Organ IV" <[EMAIL PROTECTED]> wrote: > Sorry didnt see this email. > > Basically I have a table that i am populating with .load() > > but while

[jQuery] Re: Loading Mask

2008-10-16 Thread Donald J. Organ IV
ent: Wednesday, October 15, 2008 8:13:44 PM GMT -05:00 US/Canada Eastern Subject: [jQuery] Re: Loading Mask Can you clarify? What do you mean by "loading mask"? On Oct 15, 2:50 pm, "Donald J. Organ IV" <[EMAIL PROTECTED]> wrote: > Is it possible to add a loading mask to a specific element??

[jQuery] Re: Loading Mask

2008-10-16 Thread Donald J. Organ IV
No has any recommendations on this?? - Original Message - From: "Donald J. Organ IV" <[EMAIL PROTECTED]> To: jquery-en@googlegroups.com Sent: Wednesday, October 15, 2008 2:50:18 PM GMT -05:00 US/Canada Eastern Subject: [jQuery] Loading Mask Is it possible to add a l

[jQuery] Loading Mask

2008-10-15 Thread Donald J. Organ IV
Is it possible to add a loading mask to a specific element??

[jQuery] Tab Mouse Over

2008-06-06 Thread Donald J Organ IV
I have the following:  I need to be able to change the classes for leftcorner, content, and rightcorner on mouseover of TabContainer?? Any on know of a simple way to do this??

[jQuery] Re: Photo Crop proposal

2008-05-05 Thread Donald J Organ IV
made more quickly. I think the open software movement is about more than just "getting free stuff". On May 5, 10:32 am, Donald J Organ IV <[EMAIL PROTECTED]> wrote: Why would anyone pay for something that is based on opensource.

[jQuery] Re: Photo Crop proposal

2008-05-05 Thread Donald J Organ IV
Not if it already exists for free. Steve Blades wrote: "Why would anyone pay for something that is based on open source?" In support of an open source initiative, especially if that initiative is addressing an immediate need that you might have. -- Steve "Cutter" Blades Adobe Certifi

[jQuery] Re: Photo Crop proposal

2008-05-05 Thread Donald J Organ IV
There are already crop plugins that have been written.  Why would anyone pay for something that is based on opensource. LTG wrote: Hi, (pls excuse dbl post) I would like to get feedback on: 1) Would a photo crop plug-in be useful to others? 2) How doable is it in JQuery? 3) Wo

[jQuery] Re: Does "click" action not apply to TDs?

2008-05-05 Thread Donald J Organ IV
try: (remember jQuwery returns an array) $('#content')[0].click(function() { location = 'zipcodelookup.php'; }); [EMAIL PROTECTED] wrote: Hi, I'm trying to make a TD, with id = "content", clickable. Unfortunately, it doesn't seem to be working -- the action is not invoked when I cli

[jQuery] Re: Help with fadeIn / fadeOut

2008-04-22 Thread Donald J Organ IV
This should do it. function swapDivs(oldDivId, newDivId) { $("#" + oldDivId).fadeOut("slow", function() { $("#" + newDivId).fadeIn("slow"); } // swapDivs ); [EMAIL PROTECTED] wrote: > Hi, > > If you look at this page >

[jQuery] Re: AJAX Cancel? (sorry, hit post before I was done)

2008-04-21 Thread Donald J Organ IV
You would need something to keep track of the time between keyDown events then just pick the amount of time you want to trigger on. livefree75 wrote: Hi, I have an AJAX GET going out on KeyUp on a text box. I want to Cancel the request or ignore the response if a new AJAX request has g

[jQuery] select box replacement

2008-04-18 Thread Donald J Organ IV
Has anyone found a select box replacement plugin?? I need the ability to have HTML inside of this "select box"

[jQuery] WYSIWYG Editor

2008-04-17 Thread Donald J Organ IV
Does anyone know of a lightweight(code size) WYSIWYG editor that works with jQuery it needs to only do basic HTML editing. Insert links bullets images from a given path and formating of text.

[jQuery] Re: Passing parameters to callback functions

2008-04-15 Thread Donald J Organ IV
Please ignore the fact that the single quotes are being escaped. Thanks Donald wrote: > Is i possible to pass arguments to callback functions right now I > have: > > $(".imagethumb").each(function() { > $(this).bind( \'click\', function() { > var $id = $(this)[0].id; > $("#pr