This is a tutorial I posted this evening. I thought I might throw it
up here in case anyone was interested.
http://blog.reindel.com/2007/09/24/jquery-and-xml-revisited/
Brian Reindel
d'bug @ blog.reindel.com
On Sep 24, 2007, at 8:45 PM, Glen Lipka wrote:
Sorry Karl. I just grabbed the one that came up first in google. :)
Yeah, that amazon effect is really useful.
Hey, not a problem, Glen. :-)
I tried to do that with Intuit, but couldn't figure it out, so I
ended up with the slideLinks instead.
Sorry Karl. I just grabbed the one that came up first in google. :)
Yeah, that amazon effect is really useful.
I tried to do that with Intuit, but couldn't figure it out, so I ended up
with the slideLinks instead.
These did very well in usability studies. Unexpected wow.
http://www.commadot.com/
OK, here is the client-side undo plugin demo that I mentioned earlier:
http://mg.to/znc/colortuner.html
This is the color tuner from the Zvents Network Calendar wizard. Normally you
would get to the color tuner by going to a venue page
or your MyZvents page on www.zvents.com and then clicking "
Hi,
I'm OLEO.nice to meet you.
I also meet this problem when I use JQuery1.2
finally I modifid jquery.treeview.js
from $("li[ul]", this) to $("li:has(ul)", this) and then it works
well
good luck
On Sep 13, 12:07 am, Alex <[EMAIL PROTECTED]> wrote:
> I've got a page that is a massive treevi
Oh! I skipped that, thanks!
On Sep 24, 7:51 pm, Jörn Zaefferer <[EMAIL PROTECTED]> wrote:
> voltron schrieb:> Would there be an official bug fix sometime? I am using it
> with
> > validation plugin
>
> As mentioned in the previous post: I already fixed that.
>
> -- Jörn
Hey Glen,
That's actually a pretty old version of the plugin. A new(er) and
improved version can be found here:
http://plugins.learningjquery.com/cluetip/demo/
Pete,
Check out that URL above and click on the Examples link at the top of
the page. Then hover over the link that says "sort of
Using jquery 1.2.1 toggle:
jQuery().ready(function(){
$('#multiple').toggle(
function(){
$('.afield').attr('disabled',true);
},
function(){
$('.afield').removeAttr('disabled');
}
);
});
I'm trying to toggle t
John,
Well figures .. it is my code. .html() certainly does the trick. I
wasn't aware that replaceWith removes stuff from the DOM indefinitely.
A, thanks for saving me from hours of troubleshooting. I really
really appreciate it.
- sf
On 9/24/07, John Resig <[EMAIL PROTECTED]> wrote:
>
> A
I am currently working on a site/application that is ajax driven. As
it stands right now it works properly, and degrades properly as well.
One issue I am having is history. I tried klaus's history plugin, and
it works great except one small problem, several of my links that are
loaded by the the a
If you're talking about capturing the event when a checkbox is checked, then
"click" is correct.
$("#mycheckboxid").click(function() {
dostuff;
});
- Original Message -
From: "voltron" <[EMAIL PROTECTED]>
To: "jQuery (English)"
Sent: Monday, September 24, 2007 2:04 PM
Subject: [jQ
I have the following code that works except for the callback part of
it is not doing exactly what I want. Right now it reloads the test.php
page instead of using the same instance of it inputing the variables.
How do I properly update the currentposition div?
$(document).ready(function(){
$("for
Are you meaning to do .html(..) instead of replaceWith? replaceWith
completely removes the element (which means that when it's called the
second time, nothing happens, since the element no longer exists).
Whereas .html() simply replaces the contents of the element.
--John
On 9/24/07, Steve Fin
hover expects 2 functions, so getting an error isn't surprising.
After a cursory look at your code, one thing that jumps out is I suggest you
don't do $('div#wrap').attr('class') == "xlarge". Instead, do:
$('div#wrap').is(".xlarge").
Other than that, maybe verify that your selector is working rig
This is actually happening in IE7 also. Is it possible that something
is hosed with my code? I'm more confident it's that than a broken
replaceWith() but I'd really like to know why it only works once, and
then I need a page refresh for that "ajax" effect.
- sf
On 9/24/07, Steve Finkelstein <[EM
$("input :checked")
$("input").is(":checked");
Untested. But I think they work.
Glen
On 9/24/07, voltron <[EMAIL PROTECTED]> wrote:
>
>
> How do I detect if a checkbox is checked by a user? change or click
> would be wrong.
>
> Thanks
>
>
That's a nice effect. I have been trying to do something like that too.
Microsoft does a very similar thing.
Some helpful plugins to check out:
1. Hoverintent. Slows down the interaction to make sure the user intended
to mouseover.http://cherne.net/brian/resources/jquery.hoverIntent.html
2. ClueT
Hi all,
So I have a simple script which essentially uses .replaceWith() to
replace the containing elements HTML with a success callback. This
works fine the first time I invoke a function which calls
.replaceWith() in the success call back, but any subsequent calls
leaves the DOM unmodified.
Her
Yes, I added the method, this is what I have now
// JS
$(document).ready(function(){
jQuery.validator.addMethod("password", function( value, element,
param ) {
return this.optional(element) || value.length >= 6 && /
\d/.test(value) && /[a-z]/i.test(value);
}, "Your password must
Hi Yaip. You'll need to provide some more details as to what you'd like
to accomplish.
Rey
yaip wrote:
I am brand new to this. Reading the documentation, I know how I would
use jQuery. But I don’t know how to use UI or Widget. Can anyone help?
I hope this isn't a double post... This is kind of an awkward problem to
search on
Perhaps the root of my problem is the custom function I've written, but I've
set up an "increase/decrease text size" function on a site and it's not
working in ie6 (works fine on XP in ff2, ie7, Opera9, and Safari
The same error shows up whenever I call Jquery.stop(); my goal is to
prevent all the queued "slow" animations.
R1.2
On Sep 13, 2:27 pm, "Rafael Santos" <[EMAIL PROTECTED]> wrote:
> I'm getting the same error while testing the release 1.2.
> It happens when I fire $.scrollTo()..
>
>
How do I detect if a checkbox is checked by a user? change or click
would be wrong.
Thanks
There is a line in the (Wil Stuckey's) star ratings plugin that looks
like this:
stars.eq(averageIndex).addClass('on').children('a').css('width',
percent + "%");
I found that the eq() function was not returning 1 item, but rather
all matching items from averageIndex to the end of the items.
M
Hi all,
I'm trying to construct a "popover" menu that resembles the one on
Amazon.com (put your mouse over "see all 43 product categories"). I'm
not too familiar with jQuery/JavaScript, but I thought I would be able
to do something like this:
$(document).ready(function(){
Hi, thank you for helping me begin down this path.
Before I use the $.ajax function, do I need to install a codebase for
it?
I notice it is similar to Klaus Hartl cookie plugin, where I install
his codebase, then use it later like var country =
$.cookie('language');
When I start to use this cod
I am brand new to this. Reading the documentation, I know how I would use
jQuery. But I don't know how to use UI or Widget. Can anyone help?
hello,
is it possible to use tablesorter with charset other than US? For
example with latin2, cp1250 etc.
Let's make example:
using cp1250: a, ą, b, c, ć ...
using US: ą, ć, a, b, c ...
regards
tom
It's just 'failure' then function etc..
So from your script:
$.AjaxCFC({
url: "/packages/ajax/primaryInvitee
.cfc",
method: "addInvitee",
data: options,
success: function(r) {
thisCheck = "check_" + r.LOGI
Changed the title again, so, now hopefully someone can help me with my
problem.
Right now we're probably looking at 9am to 5pm at Harvard University.
We're still waiting on a final confirmation from them, so that's not
absolutely final yet. If that doesn't work out, then it'll probably be
down the road at MIT.
After 5 we'll probably do dinner/drinks at a local establishment.
I swear I tried this... However of course it works now and probably did
before.
Thank you sir.
Works as expected now and my love for jQuery only grows.
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of John Resig
Sent: Monday, September 24, 2007
Have any details been nailed down in regards to the Sat. Oct 27th jQuery
Camp following Ajax Experience?
I need to finalize travel arrangements so a location and ending time would
be most helpful. Looking forward to it!
-js
> > > From: Steve Finkelstein
> > > I was curious if there is anyone currently working on
> > > an 'Undo' type plugin for the jQuery platform. Essentially,
> > > similar functionality to what gmail offers is desired by
> > > many. If not in the works, I wouldn't mind giving it a
> > > shot myself.
If you only want the children, just use a child selector:
$("#topic").load("help.html #topic-example > *");
The other selector mentioned "#topic-example *" will get you all
descendants, which will certainly give you strange results.
--John
On 9/24/07, Smith, Allex <[EMAIL PROTECTED]> wrote:
>
>
Well,
I think I've accomplished completely confusing myself. I'll include
both the client-side and server-side scripts I'm using here. It's
pretty self-explanatory what I'm trying to accomplish, but I'm having
a great ordeal of trouble getting there.
Without further a due:
dbsync.php
--
ht
Yes, that works but...
This and any other way I do it produces interesting results.
This:
This is some dummy text. Just some more text. This is some dummy
text.
Just some more text.
http://www.google.com";>Test Link This is some dummy
text. Just some more text.
Rudimentary is in the eye of the beholder. ;)
On 9/24/07, Steve Finkelstein <[EMAIL PROTECTED]> wrote:
>
>
> Hi all,
>
> So I'm trying to do something rather simple, but having difficulty
> accomplishing it. I'm basically giving the user an option to delete a
> row from a table within a div, usi
Hi all,
So I'm trying to do something rather simple, but having difficulty
accomplishing it. I'm basically giving the user an option to delete a
row from a table within a div, using something similar to this on the
server-side:
if(mysql_num_rows($result) == 0) { exit; }
In response to the original poster...
Even if you just want a purely client-side undo mechanism (that delayed
sending to the server until you're ready), you'd need to maintain some kind
of event queue. That kind of thing tends to be very app-specific, and it's
hard thing to generalize w/o definin
Steve Finkelstein schrieb:
Hi all,
I was curious if there is anyone currently working on an 'Undo' type
plugin for the jQuery platform. Essentially, similar functionality to
what gmail offers is desired by many. If not in the works, I wouldn't
mind giving it a shot myself.
Implementing an un
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 contents of #topic-example, but only the children, not the
container itself.
What
Try $(window).unload(...). Works for me on firefox. I think these docs are
wrong:
http://docs.jquery.com/Events/unload#fn
--Erik
On 9/24/07, Trans <[EMAIL PROTECTED]> wrote:
>
>
> I tried this:
>
> $(document).unload(function() { alert("Bye now!"); } );
>
> But it doesn't seem to do anything.
Hi all,
I was curious if there is anyone currently working on an 'Undo' type
plugin for the jQuery platform. Essentially, similar functionality to
what gmail offers is desired by many. If not in the works, I wouldn't
mind giving it a shot myself.
Thanks for any insight.
- sf
I tried this:
$(document).unload(function() { alert("Bye now!"); } );
But it doesn't seem to do anything. What am I doing wrong?
(I'm using the latest version of jQuery.)
Thanks,
Trans.
I went to the page and don't quite follow what you are saying.
Best guess:
The element doesn't exist when you apply the hover function. Use Live
Jquery to add events to elements that are arriving via ajax after page load.
It might be easier if you tried to whittle down the example to it's barest
Looks like the source is well-documented in English, at least, easy to
follow.
Very nice, jQuery hasn't had lightbox-style transitions since
Interface. I'd like to incorporate these into Thickbox as some sort
of mutant uberbox. Also good to see jQuery-style element selection,
completely unobtrus
Are there any details in terms of times? I'm attempting to schedule a flight
and need to know if I have time to catch on Saturday night.
Cheers,
-js
On 9/15/07, John Resig <[EMAIL PROTECTED]> wrote:
>
>
> It's very likely that this will be taking place at Harvard University,
> thus, it'll be on
Moogadelic wrote:
>
> Hi
>
> I tried to put together an easy accordion-like effect:
>
> http://www.smartforce.ch/jquery/ShowHide.html
>
> There is one problem: the selected-class will not be removed if all
> items are closed (again). The class ".selected" should be removed if
> no div is vis
On Monday, September 24, 2007 10:34 AM John Resig said:
> In your code you're modifying the .html() of contents twice after the
> animation has already started. If you do a "show" animation (like what
> .show() and .sildeDown() do) then they do a calculation animating the
> height to "auto" - if
voltron schrieb:
Hi Jörn, I have just tested your suggestion. Sadly, it does not work,
if I add "password:true to my HTML, I get this:
jQuery.validator.methods[rule.method] has no properties
http://localhost/de/js/jquery.validate.pack.js
Line 14
I am following the example on your page, the one
voltron schrieb:
Would there be an official bug fix sometime? I am using it with
validation plugin
As mentioned in the previous post: I already fixed that.
-- Jörn
You could try...
$(document).ready(function() {
$('div.showHide> div').hide();
$('div.showHide> h2').click(function() {
$(this).siblings('.selected').andSelf().toggleClass('selected').end().end()
.next('div').slideToggle('fast')
.siblings('div:visible').slideUp('fas
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
In your code you're modifying the .html() of contents twice after the
animation has already started. If you do a "show" animation (like what
.show() and .sildeDown() do) then they do a calculation animating the
height to "auto" - if that height changes after the animation has
already begun then th
I have a suggestion:
Example: If u have a select multiple with few options already selected.
When the plugin is activeted it move all options to another select but it
lose all options selected before.
Instead of this:
function moveAllOptions(from, to) {
jQuery("#"+to).ht
Hello,
Maybe this has everything to do with implementation and is not a fault
of jQuery but I've always wondered why animations (like slideDown) do
not finish smoothly.
Case in point: http://leandrovieira.com/projects/jquery/lightbox/
The animation is smooth until the very end where it jumps to
On Sunday, September 23, 2007 5:40 AM Bil Corry said:
> Mahir wrote on 9/21/2007 11:02 PM:
>> the datatype collaboration is utf8_unicode_ci in mysql. it retrieves
>> value as ??
>
> I'm guessing you mean the UTF-8 replacement character " ":
It's probably showing up as questions marks. I had
Trying out jQuery UI.
Here's a problem I came across while looking at tabs.
I need to ensure that when a tab is opened it's unique. That is, when an
attempt is made to open a tab with the same content, an existing tab
should open up instead.
Here's what I mean:
I have a grid that lists, say da
The only issue I can imagine in this scenario is that you are
initialising Superfish before the HTML for the menu has been loaded
and injected into the DOM. Make sure you are putting the Superfish
initialisation code in the callback of the function you are using to
dynamically load the XML, and af
*Bump*
No ideas on this at all?
On Sep 22, 12:10 am, ryexley <[EMAIL PROTECTED]> wrote:
> I'm using the hover event handler to setup an animation for a class of
> objects on a page, and have started seeing some odd behavior since
> upgrading to jQuery 1.2.1. I have an application currently loca
I've got a page that dynamically loads an xml file and transforms it
into a menu. I had wanted to use the nice fade effects of superfish
but for some reason, no matter what I do, the animation won't happen!
I've used the latest version of jQuery and made sure I use the
provided CSS and all other
Thanks Stephan! Kindly change the thread title again please :-))
On Sep 24, 4:33 pm, Stephan Beal <[EMAIL PROTECTED]> wrote:
> On Sep 24, 2:49 pm, John Farrar <[EMAIL PROTECTED]> wrote:
>
> > I would like to see a function (of course it might be there alleady and
> > I don't know it) like this ad
I don't know if you can check if autofill has changed a form field.
What may work is using a setTimeout (to give the autofiller chance to
run) and then reset the background colour:
setTimeout( function() { $("#myfield").css("background-color", "")},
1000);
I have not tried this, so am not 100%
Use hover, plus I suggest the hoverIntent plugin. It would wait until the
user slowed down over the element.
Its a lifesaver. http://cherne.net/brian/resources/jquery.hoverIntent.html
Glen
On 9/23/07, Nick Mohr <[EMAIL PROTECTED]> wrote:
>
>
> Hi all,
>
> I'm looking to replicate this effect:
>
Check out this page to see the available events:
http://docs.jquery.com/Events
One you will probably need is $("select").change(...
That fires when the user selects an option with keyboard or mouse.
What do you mean "de-select"?
Glen
On 9/23/07, luigi7up <[EMAIL PROTECTED]> wrote:
>
>
> Hi,
>
I have been trying to think of a way to track auto fill type stuff. I am not
sure if this is possible, but is there a way to track if the text() of a
certain object has changed and then trigger an even ti it has.
Eridius wrote:
>
> I am doing some validation on a form using live validation.
> // VERSION 2 supposed to remove bad branches
> // instead removes ALL branches
> var this2 ;
> $(objectfoo).children().each(function(ichild){
> this2 = this ; // buffer
> if($(this2).find('a').not(keeplist)){$(this).remove();}})
>
Well to try and break it down,
On Sep 24, 2:49 pm, John Farrar <[EMAIL PROTECTED]> wrote:
> I would like to see a function (of course it might be there alleady and
> I don't know it) like this added to jQuery.
>
> http://docs.mootools.net/Plugins/Group.js
Hi, John! When posting to the list, please always start a NEW mail,
and
On Sep 24, 4:12 pm, "george.gsgd" <[EMAIL PROTECTED]> wrote:
> Can anyone help me come up with a better name for this? I struggled to
> come up with 'Picklists', and I'm not sure it's particularly
> descriptive or obvious...
a) Linked Selection?
b) Chained Selection?
c) ... err... Natural Selecti
Haha, real friday afternoon job. Sorry about that.
I've updated the page to correct the typos.
http://gsgd.co.uk/sandbox/jquery/picklists/
Can anyone help me come up with a better name for this? I struggled to
come up with 'Picklists', and I'm not sure it's particularly
descriptive or obvious..
OK, I got it working. Using the following code, all
statement are affected:
$(function() {
$("select").change(function() {
$('[EMAIL PROTECTED]').attr('style', 'position:absolute;
top:200; left:400; height:145px; width:145px; z-index:2; background-
image: url(/sms_
Hi Jörn, I have just tested your suggestion. Sadly, it does not work,
if I add "password:true to my HTML, I get this:
jQuery.validator.methods[rule.method] has no properties
http://localhost/de/js/jquery.validate.pack.js
Line 14
I am following the example on your page, the one with the separate
Hmm, I think thats something different
On Sep 24, 2:49 pm, John Farrar <[EMAIL PROTECTED]> wrote:
> I would like to see a function (of course it might be there alleady and
> I don't know it) like this added to jQuery.
>
> http://docs.mootools.net/Plugins/Group.js
Fabien,
This needs to be done to support the :focus pseudo class.
Getting the stylesheet with the native cssText method will return :focus as
unkown.
/christian
2007/9/23, Fabien Meghazi <[EMAIL PROTECTED]>:
>
>
> > May I ask you why you are fetching inline/remote css in the updated
> > versi
On Sep 24, 1:17 pm, Gordon <[EMAIL PROTECTED]> wrote:
> Well it's finally ready enough to go live so now I can plug the big
> jQuery-driven project I've been working on.
Gordon,
that is a really well designed app.
I love the way the product-boxes expands, and the overall
functionalities.
Bravo!
I'm not familiar with how the plugin works. I only know that it exists.
How exactly are the images being inserted? Can you use Firebug (the
Firefox extension) to view the DOM and see exactly how those files
are being placed on the page? You might be able to do some DOM
manipulation once the
I would like to see a function (of course it might be there alleady and
I don't know it) like this added to jQuery.
http://docs.mootools.net/Plugins/Group.js
Very slick, Gordon!
Congratulations!
Rick
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Gordon
Sent: Monday, September 24, 2007 7:17 AM
To: jQuery (English)
Subject: [jQuery] IT Assistant
Well it's finally ready enough to go live so now I c
Joel,
That was exactly what I meant!
Thank you so much!
Could I make one suggestion for the superfish.css file; if I might?
Having the structural css seperate from the display css would allow us
to "skin" the menus without worrying about breaking the
functionality...
Granted, it's not that hard
Gordon schrieb:
Well it's finally ready enough to go live so now I can plug the big
jQuery-driven project I've been working on. It's called IT Assistant
and is intended to make shopping to IT equipment easier (and more fun
from the comments I've had back on it so far :) ).
http://www.pcwb.com/
Hello,
The latest version of Superfish uses the latest version of the jQuery
library which is version 1.2.1, as you said. I'm not sure why you have
another file called jquery.js, but you should probably just remove
that as you won't need to include two jQuery files. Simply include the
Superfish c
Well it's finally ready enough to go live so now I can plug the big
jQuery-driven project I've been working on. It's called IT Assistant
and is intended to make shopping to IT equipment easier (and more fun
from the comments I've had back on it so far :) ).
http://www.pcwb.com/assistants/
the p
Interesting looking plugin, I'm curious though, how does it compare to
the thickbox plugin? Does it allow accessing HTML pages through AJAX
and displaying them like thickbox does?
On Sep 23, 10:46 pm, Leandro Vieira Pinho <[EMAIL PROTECTED]>
wrote:
> jQuery lightBox plugin is a powerful and simp
Hi, Leandro... very nice plug-in.
I was wondering if the plug-in display can handle various
sizes and orientations of images...i.e. can vertical images
display as easily as horizontal? Does the display area
automatically conform to the image size/orientation?
Thanks,
Rick
-Original Messag
Fixed!
On 9/23/07, vukank <[EMAIL PROTECTED]> wrote:
>
>
> First, I have to say this is a great plugin! And I want to use it.
> But, anyone else noticed a bug in cycle plugin pager option?
> http://malsup.com/jquery/cycle/pager.html
> If you click a page - the timeout changes, and the time between
Hi Joel -
First of all, thank you so much for your response. I mulled over this
thing for hours to no avail so your help is much appreciated. (And
thanks for your kind words regarding my design.)
I've implemented your solution and it seems to do the trick -- aside
from one (hopefully minor) is
I am cloning a set of elements, one of these elements is a button that
would delete this set of elements when clicked on. My problem is that
I cannot successfully bind a function to the button that does the
deleting
// JS code
$("#add_activity").click(function(){
var maxCount = [1,2,
I'm currently designing a new website using the Superfish pathclass
navigation system to create breadcrumb functionality. You can view my
beta site here:
http://www.aceconcrete.com/revised/
This is where the situation becomes unique. The client has requested
that (aside from the homepage) that
Hey,
i set up a webprojekt with the latest jQuery libary. For the menu i
decided to work with the superfish menu.
As i set up all stuff i saw that these two scripts deactivated
themselves.
Superfish uses jquery.1.2.1.js and the Libary jquery.js - How can i
combinate those two jQuerys?
Thank you!
you may use another tag instead of "title".
>
>
>
>
> $(document).ready (
> function () {
> console.info($("title"));
> console.info($("not_title"));
> console.info($("div title"));
>
Yeah, I'm trying to add all the values from the listbox to the hidden
box. The box is type="hidden". I think we need some kind of loop
possibly to get all the values.
Would there be an official bug fix sometime? I am using it with
validation plugin
Thanks
Hi
I tried to put together an easy accordion-like effect:
http://www.smartforce.ch/jquery/ShowHide.html
There is one problem: the selected-class will not be removed if all
items are closed (again). The class ".selected" should be removed if
no div is visible. How do I achieve this? "toggleClass
Hi
I tried to put together an easy accordion-like effect:
http://www.smartforce.ch/jquery/ShowHide.html
There is one problem: the selected-class will not be removed if all
items are closed (again). The class ".selected" should be removed if
no div is visible. How do I achieve this? "toggleClass
First, I have to say this is a great plugin! And I want to use it.
But, anyone else noticed a bug in cycle plugin pager option?
http://malsup.com/jquery/cycle/pager.html
If you click a page - the timeout changes, and the time between slides
becomes uneven ...
Mike, please help!
First, I have to say this is a great plugin! And I want to use it.
But, anyone else noticed a bug in cycle plugin pager option?
http://malsup.com/jquery/cycle/pager.html
If you click a page - the timeout changes, and the time between slides
becomes uneven ...
Mike (or anyone), please help!
just a quick reply. (too lazy to check the api)
I guess $(...).one('click', ... ); may be useful for you.
--
ukong
#2 =)))
#3 I think the difference consists in:
- children() finds direct descendants
- find() finds ALL the descendants (the children, the children of
children, and so on)
#1 maybe you can do it...but I never tried (BUT THERE ARE SOME USEFUL
PLUGINS)
var e = $("document").append("").ch
Hi all,
I'm looking to replicate this effect:
http://themes.wordpress.net/testrun/?wptheme=332
But I'm running into problems using mouseout as it fires every time i
go over an element inside the target element, thus making a box that
bounces up and down/ shut prematurely etc.
Anyone got any ide
1 - 100 of 111 matches
Mail list logo