[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 list of values in a selector with new a set
values I have in a list of JSON objects. I dont know the proper syntax
for doing this any help is greatly appreciated as I've searched the
web for this and couldn't find anything on it.

The only way I know would work is regenerate the selector via
generating html in a function (which is no fun). Seems like there
should be a better way.


[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:


var i, select = $("select");


for (i = 0; i < 1000; i += 1)
{
select.append("");
}


Performance in Internet Explorer is terrible. So is:

var a = [], i, select = $("select");


for (i = 0; i < 1000; i += 1)
{
a.push("");
}

select.append(a.join());


Besides creating a wrapper element, manually constructing HTML code
and using the innerHTML property on that wrapper-element, what can I
do to increase performance? (Performance in Internet Explorer in
particular).


[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 for the iPhone


Just found this. Sweet!

http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=302090867&mt=8


[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?

if x == 0

abort this function... 

Thanks,

Rick



[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 when you focus on a text box. That't
the easy bit though and I've managed to do that.

I now want the layer to disappear if the user clicks anywhere on the
page EXCEPT on the layer, or the textbox they clicked into.

I'm struggling to think of how to do this. I guess I could attach the
click event to the page body then try to work out the co-ordinates
that were clicked or something like that, but that seems a bad way to
do it.

Any help would really be appreciated.

Jon


[jQuery] Re: Loading Mask

2008-10-16 Thread Donald J. Organ IV

FRom what I can tell this blocks the entire screen and not a given element.


- Original Message -
From: "mike.helgeson" <[EMAIL PROTECTED]>
To: "jQuery (English)" 
Sent: Thursday, October 16, 2008 1:43:09 PM GMT -05:00 US/Canada Eastern
Subject: [jQuery] Re: Loading 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 the data is loading I would like to have a lightbox type mask over 
> it.
>
> - Original Message -
> From: "Mike Alsup" <[EMAIL PROTECTED]>
> To: "jQuery (English)" 
> Sent: 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

Sorry didnt see this email.

Basically I have a table that i am populating with .load()

but while the data is loading I would like to have a lightbox type mask over it.




- Original Message -
From: "Mike Alsup" <[EMAIL PROTECTED]>
To: "jQuery (English)" 
Sent: 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 loading mask to a specific element?? 



[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





Yes I understand that, sorry maybe my
comments were a little harsh and not thought out well.we all have
bad days.



LTG wrote:

  Thank you for the replies, perhaps I didn't clarify:

1)  I can find no crop plugins with this level of features.  If there
is a plug-in that comes close, for example with face cropping, by all
means please provide a link.


2)  Donald in case you haven't noticed, paying people to work on open
source projects is done all the time (usually by larger companies).
In fact it can be a very good thing for the community because more
contributions get 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 Certified Professional
Advanced Macromedia ColdFusion MX 7 Developer
_
  http://blog.cutterscrossing.com
---
The Past is a Memory
The Future a Dream
But Today is a Gift
That's why they call it
The Present





[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)  Would anyone be interested in a bounty on it? ($$$)

Please see the video of my prototype here:
http://www.hdgreetings.com/view.aspx?name=JQuery%20Crop%20Prototype&video=http://download.hdgreetings.com/crop.flv

So the basic features are:
  - Photo cropping with aspect ratio locking
  - Face cropping (elliptical crop)
  - Straighten photo with real time adjustments
  - Real-time preview of result photo

This the prototype is a working application, so all the logic is known
and perfected.  I think I know ways to make all the imaging pieces
fast enough for good performance.

Any feedback on these points would be appreciated.

thank you,
Lee
  





[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 click on the TD.  Here's the code:

	$('#content').click(function() {
		location = 'zipcodelookup.php';
	});

and here's the page (the "Just Right Pricing" section is supposed to
be clickable)

http://justrightlawns.com/pricing.php

Any ideas where I'm going wrong?  Thanks, - Dave
  





[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
>
> http://elearningrd.info/jrl/policies.php
>
> and click on each of the links next to the arrow graphics, you'll see
> the center text switches out.  However, it is choppy.  It seems that
> as one div is fading out, the other is fading in at the same time.
> This is the code I'm using
>
>   function swapDivs(oldDivId, newDivId) {
>   $("#" + oldDivId).fadeOut("slow");
>   $("#" + newDivId).fadeIn("slow");
>   }   // swapDivs
>
> How can I make one div fade in only after the other div has completly
> faded out?
>
> Thanks, - Dave
>   


[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 gone out
since the first one began.  In other words, I only want to process the
AJAX request when the user is "done" entering.  a la GMail address
lookup.  What's the best way to do this?

Jamie

  





[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;
> $("#prodimage").fadeOut("slow",
> function($id) {
> $("#prodimage")[0].src = $("#" + id ).attr( \'fullsize
> \' );
> $("#prodimage").fadeIn("slow");
> });
> }
> );
> });
>
> When it gets to the callback function for fadeOut $id is null.  How do
> I fix this??
>