Re: [jQuery] Google group email problem

2007-03-23 Thread Dossy Shiobara
oblem with the group's settings ... or something else? -- Dossy -- Dossy Shiobara | [EMAIL PROTECTED] | http://dossy.org/ Panoptic Computer Network | http://panoptic.com/ "He realized the fastest way to change is to laugh at your own folly -- then you can let

Re: [jQuery] jQuery in server side language?

2007-02-24 Thread Dossy Shiobara
s nsjsapi module, to get it to the point where I can use jQuery server-side in AOLserver. So, there's at least one person who thinks it would be great. :-) -- Dossy -- Dossy Shiobara | [EMAIL PROTECTED] | http://dossy.org/ Panoptic Computer Network | http://panoptic.com/ &q

Re: [jQuery] make a div disappear after 2seconds?

2007-01-23 Thread Dossy Shiobara
ronaldo wrote: > > should be a simple question but its been doing my heading for 1 day now!! > how can i make a div disappear after 2 seconds ? Why not just: setTimeout(function() { $(div).hide() }, 2000); -- Dossy -- Dossy Shiobara | [EMAIL PROTECTED] | http://

[jQuery] jQuery Bug #262: "name.replace is not a function" in 1.0.3

2006-11-09 Thread Dossy Shiobara
a foolish way? -- Dossy -- Dossy Shiobara | [EMAIL PROTECTED] | http://dossy.org/ Panoptic Computer Network | http://panoptic.com/ "He realized the fastest way to change is to laugh at your own folly -- then you can let go and quickly m

Re: [jQuery] Groups, Forums

2006-10-16 Thread Dossy Shiobara
nature of email-based lists. I hate to poll for new articles. -- Dossy -- Dossy Shiobara | [EMAIL PROTECTED] | http://dossy.org/ Panoptic Computer Network | http://panoptic.com/ "He realized the fastest way to change is to laugh at your own folly -- then you can let

Re: [jQuery] attach a click event to everything but one TR element...??

2006-10-14 Thread Dossy Shiobara
ttr).val(value); > } Don't use underscores in element IDs. It's not a valid character, and some browsers (like, MSIE) will not do what you want if you use it. http://devedge-temp.mozilla.org/viewsource/2001/css-underscores/ Use hyphens, if you insist on using a visual separator. --

Re: [jQuery] .each backwards ?

2006-10-06 Thread Dossy Shiobara
make .each walk backwards threw the element collection? I'm surprised there's no .reverse(). i.e.: $(collection).reverse().each(...) -- Dossy -- Dossy Shiobara | [EMAIL PROTECTED] | http://dossy.org/ Panoptic Computer Network | http://panoptic.com/ "He realized t

Re: [jQuery] inside A

2006-09-12 Thread Dossy Shiobara
t to inject the div for a reason OTHER than to add the class? If not, why not just $("[EMAIL PROTECTED]'#']").addClass("someclass") ... right? To do what you're looking for, my first attempt would be: var elem = $("[EMAIL PROTECTED]'#']

Re: [jQuery] Client-side query term highlighting demo using jQuery

2006-09-11 Thread Dossy Shiobara
ght search query terms on click-through from a SERP. The SERP's URL is what we have in document.referrer, not document.location. -- Dossy -- Dossy Shiobara | [EMAIL PROTECTED] | http://dossy.org/ Panoptic Computer Network | http://panoptic.com/ "He realized the fastest wa

[jQuery] Client-side query term highlighting demo using jQuery

2006-09-11 Thread Dossy Shiobara
l(newhtml); }); }); Naturally, my parsing of document.referrer is *very* naive. Naturally, adding the appropriate expressions to match more than just Google (or any search engine that uses the "q=terms" form) is probably necessary. I leave that up to you folks to help fill that par

Re: [jQuery] filter() on attributes?

2006-09-05 Thread Dossy Shiobara
On 2006.09.05, Sam Collett <[EMAIL PROTECTED]> wrote: > On 05/09/06, Dossy Shiobara <[EMAIL PROTECTED]> wrote: > > > > $("#foo input").filter("/[name=bar]").val(); > > I use: > $("#foo [EMAIL PROTECTED]").val(); > &

[jQuery] filter() on attributes?

2006-09-05 Thread Dossy Shiobara
S error complaining that "a[i] has no properties." The filter() docs say I should be able to use an XPath expression ... so, this should work: $("#foo input").filter("/[name=bar]").val(); Aha! It does. Is this the best way of doing this? Are the

Re: [jQuery] In-situ editing (Editable, etc.) disturbs layout

2006-08-15 Thread Dossy Shiobara
t is? From my empirical tests, it seems that the "form" node continues to exist after the submit/reset of the in-situ editing is performed. -- Dossy -- Dossy Shiobara | [EMAIL PROTECTED] | http://dossy.org/ Panoptic Computer Network | http://panoptic.com/ "He realiz

Re: [jQuery] Naming plugin files

2006-08-15 Thread Dossy Shiobara
M would be in jquery.dom.js. > > jq.editable.js, DOM would be in jq.dom.js. I've named mine "jquery-editable.js" ... FWIW. -- Dossy -- Dossy Shiobara | [EMAIL PROTECTED] | http://dossy.org/ Panoptic Computer Network | http://panoptic.com/ "He realized th

[jQuery] In-situ editing (Editable, etc.) disturbs layout

2006-08-14 Thread Dossy Shiobara
't the whole solution. Since Editable seems to repeatedly create these DOM objects but never clean then up ... this would be a source for a memory-leak in a long-lived web application, no? -- Dossy -- Dossy Shiobara | [EMAIL PROTECTED] | http://dossy.org/ Panoptic Computer Net