[jQuery] unsubscribe

2010-02-12 Thread Smith, Allex

[jQuery] remove

2010-02-11 Thread Smith, Allex

RE: [jQuery] Styling dynamic content

2009-12-16 Thread Smith, Allex
The browser should render all the styles no matter when they enter. Are you sure that the class is assigned to those elements? I would make sure by peeking at the rendered html via Firebug. -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf

RE: [jQuery] SOAP message handling in jquery

2009-12-08 Thread Smith, Allex
Have you looked at using the xml dataType with $.ajax? -Original Message- From: jquery-en+ow...@googlegroups.com [mailto:jquery-en+ow...@googlegroups.com] On Behalf Of Hariharan.t Sent: Tuesday, December 08, 2009 4:44 AM To: jQuery (English) Subject: [jQuery] SOAP message handling in jque

RE: [jQuery] Hide a nested UL, but show children

2009-10-30 Thread Smith, Allex
Not an solution, but a possibly suggestions would be: If at all possible, modify the existing html. If you absolutely cannot do that, at least you have structured content. You could always iterate over the content and build a new structure, taking out the parts you don't need or want. -Origi

[jQuery] Re: this.remove

2009-10-19 Thread Smith, Allex
I this you want $(this).remove(); -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Krommenaas Sent: Monday, October 19, 2009 10:11 AM To: jQuery (English) Subject: [jQuery] this.remove I was wondering why in a link's click event... $

[jQuery] Re: Select a tricky image with jQuery.

2008-11-12 Thread Smith, Allex
This could be a poor html design issue and I would try to change it to start. But if you are stuck with what you have you can try something like this: $("img[src$='first.gif']"); For more info check out: http://docs.jquery.com/Selectors This is untested as always. Good luck Allex -Origina

[jQuery] Re: Combining selectors

2008-10-22 Thread Smith, Allex
Ignore what I just said... according to the docs it will only match if all the attributes are the same, not based on an "or". AllexS -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of nguyenq Sent: Wednesday, October 22, 2008 12:41 PM To: jQuery (E

[jQuery] Re: Combining selectors

2008-10-22 Thread Smith, Allex
http://docs.jquery.com/Selectors/attributeMultiple#attributeFilter1attri buteFilter2attributeFilterN $("input[type='button'][type='submit'][type='reset'].addClass("button"); Should work I believe. Untested. AllexS Hope this helps -Original Message- From: jquery-en@googlegroups.com [ma

[jQuery] Re: show hidden div on click

2008-07-14 Thread Smith, Allex
Here is how I would approach this: JavaScript $(document).ready(function(){ $('.fadein').click(function(){ // Make the id overview show $('#overview').show('slow'); // override default a behavior

[jQuery] Re: Anyone Know of Good String Library?

2008-04-09 Thread Smith, Allex
No necessarily a string lib, but this has common ColdFusion Functions implemented in JavaScript... Available as a jQuery Plugin. Probably something in here that would be of value to you. http://cfjs.riaforge.org/ Via RIAForge.com from Christopher Jordan. -Original Message- From: jquery

[jQuery] Re: Standard DOM returned from jQuery selector

2008-04-01 Thread Smith, Allex
or a jQuery object - I *think* it's a DOM object, but it's been a while since I've used it Shawn Smith, Allex wrote: > What about > > $('#context .target') > > Or > > $('#context div') > > Allex > > -Original M

[jQuery] Re: Standard DOM returned from jQuery selector

2008-04-01 Thread Smith, Allex
What about $('#context .target') Or $('#context div') Allex -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jesse Sent: Tuesday, April 01, 2008 12:37 PM To: jQuery (English) Subject: [jQuery] Standard DOM returned from jQuery selector I ha

[jQuery] Attribute Selector

2008-02-25 Thread Smith, Allex
Correct me if I am wrong... This selector should: [EMAIL PROTECTED] :"[EMAIL PROTECTED]"somedomain.com] only select links that start with "mailto:"; and contain "somedomain.com" Correct? Allex

[jQuery] Re: what editor do you use?

2008-02-14 Thread Smith, Allex
Eclipse - Aptana and various other application specific plug-ins around Eclipse. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Feijó Sent: Wednesday, February 13, 2008 8:38 AM To: jquery-en@googlegroups.com

[jQuery] Re: Determine if mouse is over a specific element

2008-02-12 Thread Smith, Allex
$('#element').mouseover(function(){ alert('Hover!'); }); -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of debussy007 Sent: Tuesday, February 12, 2008 3:13 PM To: jquery-en@googlegroups.com Subject: [jQuery] Determine if mouse is over a spe

[jQuery] Re: loading content from a remote file and appending it into DOM element

2008-02-12 Thread Smith, Allex
Warning... This may be a poor method, but it works: // store the old content var $old = $("#dataDiv").html(); // run your load function $("#dataDiv").load("process_data.php?id=2",function(){ // prepend old content $(this).prepend($old); }); -Original Message- From: jq

[jQuery] Re: Is it possible to send javascript vars TO a jquery function??

2008-02-08 Thread Smith, Allex
e to send javascript vars TO a jquery function?? On Feb 8, 1:02 pm, "Smith, Allex" <[EMAIL PROTECTED]> wrote: > True. But in order to get a link like this: > AB CD . function myfunc(var1, var2) { $('div#target').load('somepage.html', {v1 :

[jQuery] Re: Is it possible to send javascript vars TO a jquery function??

2008-02-08 Thread Smith, Allex
, 11:44 am, "Smith, Allex" <[EMAIL PROTECTED]> wrote: > I'm not positive if this will be helpful, but you could try something > like this using the Metadata > plugin.http://plugins.jquery.com/project/metadata > > Your example: > Click > me > > //

[jQuery] Re: Is it possible to send javascript vars TO a jquery function??

2008-02-08 Thread Smith, Allex
I'm not positive if this will be helpful, but you could try something like this using the Metadata plugin. http://plugins.jquery.com/project/metadata Your example: Click me // javascript // you will need a click event $('a').click(function(){ // using metadata plugin... snag yo data in t

[jQuery] Re: intercepting links and adding a short animation before executing them

2008-02-07 Thread Smith, Allex
executing them oh my god - allex, you did it. it just works. i am totally aware about the issues reg. usability - but in this case it's not for the general public. many, many thanks. s On Feb 7, 11:30 pm, "Smith, Allex" <[EMAIL PROTECTED]> wrote: > I think this is a b

[jQuery] Re: intercepting links and adding a short animation before executing them

2008-02-07 Thread Smith, Allex
I think this is a bad idea from a usability standpoint... But... Untested Code: $('a').click(function(){ var hrefLoc = $(this).attr('href'); $('body').fadeOut("slow",function(){ window.location = hrefLoc; }); return false; }); Might be a better way to do it, here you go.

[jQuery] Re: Zebra striping in tables

2008-02-05 Thread Smith, Allex
Rob definitely has the best answer here. Structure your table like so: Captions are good header row footer row

[jQuery] Re: Zebra striping in tables

2008-02-04 Thread Smith, Allex
Couldn't you just use $(this) and then do whatever selector? $("table").each(function() { $(this).find('tr:even').css("background-color", "#ff"); }); Maybe I don't understand the question. Allex -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] O

[jQuery] Re: An Eclipse Plugin for JQuery, other than jQueryWTP ?

2008-02-04 Thread Smith, Allex
What about Aptana? Community Edition is free. http://www.aptana.com/studio -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of kozEfx Sent: Monday, February 04, 2008 12:03 PM To: jQuery (English) Subject: [jQuery] An Eclipse Plugin for JQuery, other

[jQuery] Re: jQuery for Designers

2008-01-18 Thread Smith, Allex
I like the idea. I think you are hitting a focus group that once exposed to jQuery would really take to it. Those peers that I have exposed jQuery to, especially those that know and understand CSS Selectors, get excited about it. Also, to me, I prefer simplistic clean layout for a blog, especia

[jQuery] Re: Bigger Link Plugin

2008-01-10 Thread Smith, Allex
Not sure about the plug-in, but block level elements () should never go inside an inline element (). Validation will cringe and fail. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of cfdvlpr Sent: Thursday, January 10, 2008 3:45 PM To: jQuery (E

[jQuery] Re: Alter Status Message

2007-12-11 Thread Smith, Allex
Matt, Why not simple keep the link pointing to the real target and having jQuery override the default link? It will keep the status bar pointing to the correct location and this way your code degrades gracefully and SEO is held intact. Same reply I sent to an early question about click trackin

[jQuery] Re: Using jQuery to track advert clicks

2007-12-11 Thread Smith, Allex
window.location = trackURL + $(this).attr('href'); return false; }); -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Smith, Allex Sent: Tuesday, December 11, 2007 12:10 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Using

[jQuery] Re: Using jQuery to track advert clicks

2007-12-11 Thread Smith, Allex
I'm a bit confused as to exactly what you want to do, but try something like this... In your html: http://www.advertlink.com"; title="Some Ad to an Adverts page" class="advert">Click me I'm an Advert! Then in your jQuery on load: // this would be a link to your server side tracking var trackURL

[jQuery] Re: Looking for code snippet to "premark" input fields

2007-10-25 Thread Smith, Allex
Try this one... it works very well. http://scott.sauyet.com/Javascript/Demo/Overlabel/ -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Samuel Vogel Sent: Thursday, October 25, 2007 6:35 AM To: jquery-en@googlegrou

[jQuery] Re: Partial .load()

2007-09-24 Thread Smith, Allex
ts, which will certainly give you strange results. --John On 9/24/07, Smith, Allex <[EMAIL PROTECTED]> wrote: > > > I'm going nuts with a fairly simple selector issue. > $("#topic").load("help.html #topic-example"); I want to get the > contents of

[jQuery] Re: Partial .load()

2007-09-24 Thread Smith, Allex
ery] Re: Partial .load() Hi, untested: $("#topic").load("help.html #topic-example *"); -- Marc Smith, Allex schrieb: > I'm going nuts with a fairly simple selector issue. > $("#topic").load("help.html #topic-example"); I want to get the >

[jQuery] Partial .load()

2007-09-24 Thread Smith, Allex
I'm going nuts with a fairly simple selector issue. $("#topic").load("help.html #topic-example"); I want to get the contents of #topic-example, but only the children, not the container itself. What is the proper way to do this. It seems so simple, but I'm struggling with it. Thanks AllexS

[jQuery] Re: A Quick Thank You to the jQuery UI team

2007-08-27 Thread Smith, Allex
the jQuery UI team That's a tentative date but its not set in stone. :) We're still working on some things. Sean will receive his beatings shortly! (whack) Rey Smith, Allex wrote: > Doh... > > Cat's out of the bag. > >> The project is set to release on Se

[jQuery] Re: A Quick Thank You to the jQuery UI team

2007-08-27 Thread Smith, Allex
m/UI/ As for a release date, I've been sworn to secrecy but I can say that things are looking good. :) Rey... Smith, Allex wrote: > Rey, > > This may be a dumb question... But is there any release info about > jQuery UI out yet? Screen shots or otherwise? > > Have I jus

[jQuery] Re: A Quick Thank You to the jQuery UI team

2007-08-27 Thread Smith, Allex
Quick Thank You to the jQuery UI team On 8/27/07, Rey Bango <[EMAIL PROTECTED]> wrote: > I know you guys have been busting your tails... Thanks Rey, it's been a lot of fun. On 8/27/07, Smith, Allex < [E

[jQuery] Re: A Quick Thank You to the jQuery UI team

2007-08-27 Thread Smith, Allex
Rey, This may be a dumb question... But is there any release info about jQuery UI out yet? Screen shots or otherwise? Have I just not been watching the list closely enough? Thanks, Allex -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rey Bang

[jQuery] Re: Quick question...

2007-08-16 Thread Smith, Allex
Have you taken a look at this? I'm not a PHP guy, but I marked this article some time back due to the mention of jQuery. http://ajaxian.com/archives/plaintemplate-phpquery AllexS -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of MikeR Sent: Wedn

[jQuery] Re: OT - AJAX book

2007-06-29 Thread Smith, Allex
I second that, Johns book is very well written with a good chapter on Ajax. Although I have to say my favorite chapter was Chapter 2: Object Oriented JavaScript. Excellent book. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of F

[jQuery] Re: Validation plugin can't work with IE7?

2007-06-01 Thread Smith, Allex
I had a similar problem with the validate plugin. Using the non-packed version worked. Try that and see if the problem persists. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of howard chen Sent: Friday, June 01, 2007 10:57 AM To: jquery-en@googl

[jQuery] Re: Updating ID in two places

2007-05-31 Thread Smith, Allex
I'm a little confuse by you code. I would drop using Id's for productSizeTitle and productSizeTitle2 or at least setting your css for them by id. Instead I would apply a class to them like: .boldClass { font-weight:700; } Then for the jQuery code: $('#productSizeTitle').addClass("bold

[jQuery] Re: I'm going nutz...

2007-04-06 Thread Smith, Allex
y Wachsstock On Apr 6, 3:27 pm, "Smith, Allex" <[EMAIL PROTECTED]> wrote: > It's not applying the style... I'm using the dump() plugin as well as > simply alerting it to the screen. > > Allex > > -Original Message- > From: jq

[jQuery] Re: I'm going nutz...

2007-04-06 Thread Smith, Allex
Sorry... fat fingered your name Glen. Allex -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Smith, Allex Sent: Friday, April 06, 2007 12:19 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: I&#

[jQuery] Re: I'm going nutz...

2007-04-06 Thread Smith, Allex
the "View Generated Source" option in FF's developer toolbar allows you to see changes made using javascript. Or are you saying that it's not even applying the style? From: jquery-en@googlegroups.com [mailto:[EM

[jQuery] Re: I'm going nutz...

2007-04-06 Thread Smith, Allex
27;m going nutz... On 4/6/07, Smith, Allex <[EMAIL PROTECTED]> wrote: Test $('#mytest').attr({style:"width:200px;"}); returns Test in FF2 Te

[jQuery] I'm going nutz...

2007-04-06 Thread Smith, Allex
Test $('#mytest').attr({style:"width:200px;"}); returns Test in FF2 Test in IE6 I must be going mad. Any suggestions as to where I might be going wrong?

[jQuery] Re: Am I missing something?

2007-04-03 Thread Smith, Allex
This works best :) Thanks again. // No more whitespace problem :) var temp = jQuery.trim(jQuery(this).text()); -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Smith, Allex Sent: Tuesday, April 03, 2007 3:03 PM To: jquery-en@googlegroups.com

[jQuery] Re: Am I missing something?

2007-04-03 Thread Smith, Allex
/ -Marshall Smith, Allex wrote: > Marshall, > > Thanks for your reply. > > My css is set up like this: > > .graph .bar { > display: block; > position: relative; > background: #B1D632; > text-align: center; > color: #333; >

[jQuery] Re: Am I missing something?

2007-04-03 Thread Smith, Allex
Marshall, Thanks for your reply. My css is set up like this: .graph .bar { display: block; position: relative; background: #B1D632; text-align: center; color: #333; height: 2em; line-height: 2em; } The original sample I got this f