[jQuery] Re: encoding(charset) problem

2007-07-05 Thread Ⓙⓐⓚⓔ
site. > > For those who are interested, here is my game viewer: > http://www.daoqigame.com/jsgameviewer/index1.html > > Thank you. > > Guoliang > -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: Binding actions after an ajax call?

2007-06-30 Thread Ⓙⓐⓚⓔ
id); }) }); ... And then showEventDetails() strips out what it needs, and does the same load() for each related DIV. Woo-hoo!! jQuery ROCKS! And it makes rapid development simple with CakePHP!! Regards, -Toby -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: SELECTOR CHALLENGE

2007-06-25 Thread Ⓙⓐⓚⓔ
oops http://jqueryjs.googlecode.com/svn/trunk/jquery/ On 6/25/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote: ouch! namespaces are second class citizens in the JavaScript world! I think the latest version of jQuery handles it better. so Sean's should work. http://jqueryjs.googlecode.com/s

[jQuery] Re: SELECTOR CHALLENGE

2007-06-25 Thread Ⓙⓐⓚⓔ
attributes. On Jun 25, 8:34 pm, "Ⓙⓐⓚⓔ" <[EMAIL PROTECTED]> wrote: > var myResults = $('form').filter(function(){return ! > $(this).html().match('coop:manage')}) > > // untested, and rather sloppy... but it should do the job > > On 6/25/07, John

[jQuery] Re: SELECTOR CHALLENGE

2007-06-25 Thread Ⓙⓐⓚⓔ
as a jQuery object that can be > itterated through with .each! > > Thanks oh guru in advance for your great knowledge, :). > > John Farrar -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: Parseing XML in Internet Explorer with jQuery

2007-06-25 Thread Ⓙⓐⓚⓔ
try the complete call back, see if you are getting what you think you should get. On 6/25/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote: console.log (xml) your xml is the resonseXML, success give you that alone when you ask for dataType 'xml'

[jQuery] Re: Parseing XML in Internet Explorer with jQuery

2007-06-25 Thread Ⓙⓐⓚⓔ
wrote: The perl script sends an application/xml header. And where am I bypassing UTF encoding? (The responseXML in the code shouldn't have been there by the way, it was just a leftover from my attempts to work around the problem) On Jun 25, 6:16 pm, "Ⓙⓐⓚⓔ" <[EMAIL PROT

[jQuery] Re: Parseing XML in Internet Explorer with jQuery

2007-06-25 Thread Ⓙⓐⓚⓔ
tried to run the same code in Internet Explorer, nothing happened. Firebug Lite just logged an empty line at the console.log (xml) line and didn't execute the loop. I think that logically my code is correct, but there is something about it that IE doesn't like. If you can shed some light on this I'd appreciate a fix or a workaround of some sort. -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: Loosing access to 'this' objects in callback method!

2007-06-24 Thread Ⓙⓐⓚⓔ
$.ajax( >>> { >>> type: "POST", // type of http request >>> url: this.sourceURL, // where to get file from >>>

[jQuery] Re: Overlay plugin?

2007-06-23 Thread Ⓙⓐⓚⓔ
t; View this message in context: > http://www.nabble.com/Overlay-plugin--tf3971235s15494.html#a11272397 > Sent from the JQuery mailing list archive at Nabble.com. > > -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: displaying an offscreen row

2007-06-23 Thread Ⓙⓐⓚⓔ
up to make the row I want to see > visible, using DOM? > > I don't think so, but thought I'd ask. Do any of the add-ons for jquery > that deal with tables handle this? > Try the scrollIntoView method: $('tr')[0].scrollIntoView(); http://developer.mozilla.

[jQuery] Re: Is it possible to attach codes to body.onload via document.ready?

2007-06-23 Thread Ⓙⓐⓚⓔ
I take it all back! $(function(){ eval($('body').attr('onload')); }); ok alerted 2 times!! On 6/23/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote: yes... it overrides onload="test()" ... but it sh

[jQuery] Re: Is it possible to attach codes to body.onload via document.ready?

2007-06-23 Thread Ⓙⓐⓚⓔ
y(function() { > >> // Assign event to window.onload > >> jQuery('body').load(function() { > >> alert('Everything is loaded!'); > >> }); > > >> }); > > >> On 23 jun, 12:52, howa <[EMAIL PROTECTED]> wrote: > > >>> Hello, > > >>> is it possible to attach some codes to the body.onload via > >>> document.ready, or other methods to attach body.onload? > > >>> thanks.- 隱藏被引用文字 - > > - 顯示被引用文字 - -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: Easebox

2007-06-22 Thread Ⓙⓐⓚⓔ
t of things I want to do to it on it. Any suggestions to add to the list? Any suggestions of how I could improve the code? I have no idea how to make it into a plugin. Continuing to work on it, but help is greatly appreciated. Glen -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: Test

2007-06-22 Thread Ⓙⓐⓚⓔ
ROTECTED] > http://www.iambright.com > -- Benjamin Sterling http://www.KenzoMedia.com http://www.KenzoHosting.com -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-22 Thread Ⓙⓐⓚⓔ
diff is a unix file compare ... the -u option is the prettiest and most understandable option. any compare utility will do! On 6/22/07, oscar esp <[EMAIL PROTECTED]> wrote: diff -u ¿? I don't know diff prg. :-( Thanks. On 21 jun, 18:41, "Ⓙⓐⓚⓔ" <[EMAIL PROTECTED

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-21 Thread Ⓙⓐⓚⓔ
fficial version? I need to be sure that putting the cahrset we don't "crash other" things... Seems that be never fix! the problem. Thanks Jake. -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: json-in-script and getJSON

2007-06-20 Thread Ⓙⓐⓚⓔ
urn 0-order; } jQuery.getJSON( 'http://' + g_szBlogDomain + '/feeds/comments/default? alt=json', function(json) { g_szComments = json.feed.entry.sort(a_comprc); }) I hope I am not asking a too stupid question... -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: Errors on page??

2007-06-20 Thread Ⓙⓐⓚⓔ
this is the problem) and replaced it with the lasted jquery pack.. still errors, any idea why? Thanks ! Amir! -- View this message in context: http://www.nabble.com/Errors-on-page---tf3952902s15494.html#a11215178 Sent from the JQuery mailing list archive at Nabble.com. -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: german umlauts

2007-06-19 Thread Ⓙⓐⓚⓔ
Stuhr <[EMAIL PROTECTED]> wrote: Ⓙⓐⓚⓔ schrieb: > I don't see a charset there what do you mean ? > what is the server putting in for it??? if i use the ä it's in there when looking at my js directly. but in the brwoser there's a "�" (a black diamond wi

[jQuery] Re: german umlauts

2007-06-19 Thread Ⓙⓐⓚⓔ
I don't see a charset there what is the server putting in for it??? php isn't very clever with utf, so you have to be very careful! a live link would help to see the headers and the encoding!! On 6/19/07, Michael Stuhr <[EMAIL PROTECTED]> wrote: Ⓙⓐⓚⓔ schrieb: > it l

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-19 Thread Ⓙⓐⓚⓔ
that get the post <% Response.AddHeader "Content-Type", "text/html; charset=iso-8859-1" Response.Write("response: "+request.Form("text1").item) %> -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: german umlauts

2007-06-19 Thread Ⓙⓐⓚⓔ
plugin is causing this. cause when i'm doing a simple: $j('body').prepend('äÖÜß'); i'm getting ä��� so i guess i have to encode those, which would be ok. weird, it's always the encoding of strings that cause me so much trouble! dang! micha -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: Reading HTML from XML

2007-06-19 Thread Ⓙⓐⓚⓔ
>errormsg) > response> > > Put the HTML inside a CDATA section. > > > > > > > Or you could encode the content, but I think CDATA is the way to go. > > > -- > Rob > > -- Benjamin Sterling http://www.KenzoMedia.com http://www.KenzoHosting.com -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: How to create an endless animation?

2007-06-18 Thread Ⓙⓐⓚⓔ
mething like > that, I'm of course willing to learn it from a resource, but simply > didn't find one yet. > > > > Thanks in advance, > > > > Arne You can use a recursive function maybe... (untested): function endless() { $('#whatever').animate({ /* properties */ }, 200, endless); } -- Klaus -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: getJSON w/ PHP

2007-06-18 Thread Ⓙⓐⓚⓔ
aurore.net/projects/php-json/ > > and will always* produce valid json from arrays. > > - jake > > * - As much as I've used it, I haven't come across a single problem. > > On 6/18/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote: > > do you have variables named O

[jQuery] Re: getJSON w/ PHP

2007-06-18 Thread Ⓙⓐⓚⓔ
;=>true,"state"=>"OUT-DECOMMISSIONED")); php-json is native in PHP 5.2 and above, and available as a plugin here: http://aurore.net/projects/php-json/ and will always* produce valid json from arrays. - jake * - As much as I've used it, I haven't come across a si

[jQuery] Re: getJSON w/ PHP

2007-06-18 Thread Ⓙⓐⓚⓔ
e expected response with Firebug, but the getJSON callback isn't firing? My PHP is simply Do a need to set a special content type before returning the JSON? -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: jQuery may add $.browser.isiPhone

2007-06-17 Thread Ⓙⓐⓚⓔ
I'm guessing a poke = a click, and a drag is a drag what will the double finger gestures be ? On 6/17/07, Matt Stith <[EMAIL PROTECTED]> wrote: Yeah, iphone runs a full version of safari, so just a safari check should be fine On 6/17/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED] > wro

[jQuery] Re: jQuery may add $.browser.isiPhone

2007-06-17 Thread Ⓙⓐⓚⓔ
should be as easy as adding a line with iphone: /iphone/.test(b), inside jQuery.browser = { }.. But, if it's added to the core: please, please name it $.browser.iphone for consistency. Just because Apple uses odd capitalisation, that doesn't mean we should use it in jQuery like that.

[jQuery] Re: How to disable (or properly remove) meta refresh?

2007-06-17 Thread Ⓙⓐⓚⓔ
the head is messy! On 6/17/07, Michael Andreas <[EMAIL PROTECTED]> wrote: Snap, I know those metas are evil! That's a good explanation. Thank you for the response, Jake. -Michael- On Jun 17, 11:57 pm, "Ⓙⓐⓚⓔ" <[EMAIL PROTECTED]> wrote: > As Sigmund Freud might

[jQuery] Re: How to disable (or properly remove) meta refresh?

2007-06-17 Thread Ⓙⓐⓚⓔ
: Hi group, just a quick question here. Does anyone know how can I disable the refresh effect of the following meta element: ? I've tried $("[EMAIL PROTECTED]").remove(); but it didn't work. I'm so hopeful of a solution. Thank you. -Michael- -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: Form Element Collection

2007-06-16 Thread Ⓙⓐⓚⓔ
g the > element ID. (Currently select boxes don't work the same as an input > element to my perception.) > > -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: Insert table row next to last row

2007-06-16 Thread Ⓙⓐⓚⓔ
uld insert a row above the last table row? -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-16 Thread Ⓙⓐⓚⓔ
st done with the patch. using ajax call: -works by get -doesn't work by post using ajaxForms: -doesn't work by post -doesn't work by get. Any other suggestion ake? Thanks for your help. -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: Safari 3 and onload

2007-06-16 Thread Ⓙⓐⓚⓔ
d.com/banner/smalltemptr/US/CA/San_Francisco.gif"; /> http://mystatus.skype.com/balloon/jakecigar"; /> On 6/16/07, Erik Beeson <[EMAIL PROTECTED]> wrote: $(document).ready(...) is when the dom and scripts are ready. $(window).load(...) is

[jQuery] Re: ANNOUNCE: Please Welcome New jQuery Team Member Glen Lipka

2007-06-15 Thread Ⓙⓐⓚⓔ
Great news! It's always good to hear from Glen! He comes to jQuery from a different place than most of us geeks! -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: Safari 3 and onload

2007-06-15 Thread Ⓙⓐⓚⓔ
meaning that a substantial part of the load time is not included. <http://www.howtocreate.co.uk/safaribenchmarks.html> ----- - Bil -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: Can Jquery be used to provide an image backup system?

2007-06-15 Thread Ⓙⓐⓚⓔ
dely implemented. --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Jun 15, 2007, at 3:57 PM, Ⓙⓐⓚⓔ wrote: complete is cute, but the onload handler is cool! $('img').load(function (){ /*play with it */}) On 6/15/07, Sean Catchpole < [EMAIL PR

[jQuery] Re: Can Jquery be used to provide an image backup system?

2007-06-15 Thread Ⓙⓐⓚⓔ
complete is cute, but the onload handler is cool! $('img').load(function (){ /*play with it */}) On 6/15/07, Sean Catchpole <[EMAIL PROTECTED]> wrote: Thanks Karl, I had no idea there was a complete property. Is this only for images, or all DOM elements? ~Sean -- Ⓙⓐ

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-15 Thread Ⓙⓐⓚⓔ
... I get "áÃ(c)í ç áÃ(c)áa" We can fix it ¿? Tomorrow I will try with plugin Form. Just to keep it in mind: Your jQuery branch is standar 1.2+patch UTF8¿? PD:Thanks for your help!!! For me this issue is a critical, and to mantain my current project too.. because I decide

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-14 Thread Ⓙⓐⓚⓔ
is patch in jquery the form plugion will mantain the new charset? On 10 jun, 19:53, "Ⓙⓐⓚⓔ" <[EMAIL PROTECTED]> wrote: > keep me posted!! You may also need : > > ajaxSetup({contentType: "application/x-www-form-urlencoded; charset= charset you want to call it>"

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-14 Thread Ⓙⓐⓚⓔ
dataType: "html" }; Params will be in iso-8859-1¿? On 10 jun, 19:53, "Ⓙⓐⓚⓔ" <[EMAIL PROTECTED]> wrote: > keep me posted!! You may also need : > > ajaxSetup({contentType: "application/x-www-form-urlencoded; charset= ch

[jQuery] Re: link's $(this) in MSIE6

2007-06-13 Thread Ⓙⓐⓚⓔ
t that this } function myProperAction { this.blur(); // this this is that this return false; } $('a...').bind('click', myProperAction); ... ... --Erik On 6/13/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote: > but you probably want that.blur() > > > On 6/13/07, Ⓙⓐⓚⓔ <[EM

[jQuery] Re: link's $(this) in MSIE6

2007-06-13 Thread Ⓙⓐⓚⓔ
but you probably want that.blur() On 6/13/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote: this is not this! this is the window! a href="..." onclick="myaction(this); return false;" passes this as a parameter for later use. function myaction(that) { $(that).blur(); // blurs t

[jQuery] Re: link's $(this) in MSIE6

2007-06-13 Thread Ⓙⓐⓚⓔ
;" > > JS: > > function myaction() { > $(this).blur(); // blurs a whole window in MSIE6! > ...some animation and another actions... > } > > The problem is, that in MSIE6 > > $(this).blur(); > > blurs NOT the link, but a WINDOW. What's a workaround? Or is this a > bug? > > Note that it works in Firefox 2 and Opera 9. > > -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: Request to all developers: Put version number in file name please

2007-06-13 Thread Ⓙⓐⓚⓔ
I thought about that! I tend to download both versions ... I sometimes want to look at what I'm using! On 6/13/07, Bil Corry <[EMAIL PROTECTED]> wrote: Ⓙⓐⓚⓔ wrote on 6/13/2007 1:27 PM: > I would quickly grep my files and find the version in use. How would you grep the versi

[jQuery] Re: Request to all developers: Put version number in file name please

2007-06-13 Thread Ⓙⓐⓚⓔ
randomly picked). By looking at the filename and source, can you tell if this the first beta or the second? < http://ideamill.synaptrixgroup.com/jquery/tablefilter/_dist/jquery.tableFilter-packed.js > There's no quick way to know. - Bil -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: textNodes Plugin 0.2

2007-06-12 Thread Ⓙⓐⓚⓔ
the benefit of using this plugin is to keep the chain, using chainable events instead of dropping into each loops. On 6/12/07, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: Ⓙⓐⓚⓔ wrote: > a new, and I think very useful function, match() I find that last one quite interesting: I thr

[jQuery] textNodes Plugin 0.2

2007-06-12 Thread Ⓙⓐⓚⓔ
ugins/textNodes/ see it: http://cigar.dynalias.org/plugins/textNodes/ -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: textNodes Plugin 0.1

2007-06-11 Thread Ⓙⓐⓚⓔ
nodes are different than normal dom nodes) get you down! On 6/11/07, Michael Stuhr <[EMAIL PROTECTED]> wrote: are these in release state? i couldn't see any version numbers in the files, just the trac ones. that makes it somewhat difficult to keep trac ... micha -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: getting the caller of an event

2007-06-11 Thread Ⓙⓐⓚⓔ
here is my html: Caller One Caller Two Caller Three here is my javascript var myEvent = function(this){ alert(this.id); } Well, this doesn't work for me, I hope you got what I mean. Thanks in advance. james -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: Macrumors running live udpates of WWDC

2007-06-11 Thread Ⓙⓐⓚⓔ
have been for more that 15 years now. My PC is the > machine that sits in the corner b/c I only use it when I have to, and that's > for testing web apps only. It's a laptop, so it doesn't have to get in my > way. I just VNC to it from my Mac when I test. :-) -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: textNodes Plugin 0.1

2007-06-11 Thread Ⓙⓐⓚⓔ
http://cigar.dynalias.org/plugins/textNodes/ has another quasi-homepage and another demo. On 6/11/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote: Thanks John! and stop hijacking my thread! Any comments??? On 6/11/07, John Resig <[EMAIL PROTECTED]> wrote: > > Ok - I just opened the

[jQuery] Re: textNodes Plugin 0.1

2007-06-11 Thread Ⓙⓐⓚⓔ
Thanks John! and stop hijacking my thread! Any comments??? On 6/11/07, John Resig <[EMAIL PROTECTED]> wrote: Ok - I just opened the gates, apparently everything was getting moderated. Sorry about that! --John On 6/11/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote: > John, I posted once..

[jQuery] Re: textNodes Plugin 0.1

2007-06-11 Thread Ⓙⓐⓚⓔ
roups.google.com/group/jquery-dev --John On 6/11/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote: > it's release 0.1 ... more sample and code to follow. If we had a dev list, I > would have posted there first. > > it started with fudging textNodes into a jQuery... it was messy, but >

[jQuery] Re: Macrumors running live udpates of WWDC

2007-06-11 Thread Ⓙⓐⓚⓔ
ack to work. --Erik On 6/11/07, *Chris W. Parker* <[EMAIL PROTECTED] > wrote: On Monday, June 11, 2007 3:58 PM Shelane Enos <> said: > Works fine on my XP (the one that sits in the corner of my office), > though I haven't used it extensively. Oh *that* computer? T

[jQuery] Re: textNodes Plugin 0.1

2007-06-11 Thread Ⓙⓐⓚⓔ
ially cute. On 6/11/07, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: Michael Stuhr wrote: > > Ⓙⓐⓚⓔ schrieb: >> a set of plugins to work with textNodes inside the dom. >> >> >> textNodes() & replace() & split() & span() & acronyms() & more

[jQuery] Re: IDEA: Plugin Registering

2007-06-11 Thread Ⓙⓐⓚⓔ
ght now, I can't keep track of all the plugins I've used and what version they are. What is the status of the enhanced plugin site anyway? Glen -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: IDEA: Plugin Registering

2007-06-11 Thread Ⓙⓐⓚⓔ
the plugins I've used and what version they are. What is the status of the enhanced plugin site anyway? Glen -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] textNodes Plugin 0.1

2007-06-11 Thread Ⓙⓐⓚⓔ
a set of plugins to work with textNodes inside the dom. textNodes() & replace() & split() & span() & acronyms() & more! get it here: http://jqueryjs.googlecode.com/svn/trunk/plugins/textNodes/ see it here: http://cigar.dynalias.org/plugins/textNodes/textNodes.html -

[jQuery] Re: Macrumors running live udpates of WWDC

2007-06-11 Thread Ⓙⓐⓚⓔ
did you try it on any jQuery pages? On 6/11/07, Howard Jones <[EMAIL PROTECTED]> wrote: Ⓙⓐⓚⓔ wrote: > get Safari 3.0 for Windows (or os x) ! > http://www.apple.com/safari/download/ > > It didn't install on my os x but the windows version may work. It installed ju

[jQuery] Re: Macrumors running live udpates of WWDC

2007-06-11 Thread Ⓙⓐⓚⓔ
get Safari 3.0 for Windows (or os x) ! http://www.apple.com/safari/download/ It didn't install on my os x but the windows version may work. On 6/11/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote: 11:17 amInnovative new way for developing for mobile applications. based on iphone having

[jQuery] Re: Macrumors running live udpates of WWDC

2007-06-11 Thread Ⓙⓐⓚⓔ
me up with a very sweet solution11:16 amWhat about developers?11:15 am18 days from now11:15 amShips June 29th - 6pm11:15 amONE LAST THING: iPhone THAT MEANS jQuery!! On 6/11/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote: 11:09 amSafari On WINDOWS11:09 am18 Million Safari users Marketshare has cli

[jQuery] Re: Macrumors running live udpates of WWDC

2007-06-11 Thread Ⓙⓐⓚⓔ
t;mailto:[EMAIL PROTECTED]><[EMAIL PROTECTED]>> wrote: Macrumors.com <http://Macrumors.com> <http://Macrumors.com> is running a "continuous" AJAX update of the keynote address of WWDC. No more "update in 60 seconds" countdown. -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: Macrumors running live udpates of WWDC

2007-06-11 Thread Ⓙⓐⓚⓔ
10:49 amusing safari to make widgets from web pages Woo hoo! On 6/11/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote: thanks Shelane! I've been tuned in since 10 am!!! On 6/11/07, Shelane Enos <[EMAIL PROTECTED]> wrote: > > > Macrumors.com is running a "continuous"

[jQuery] Re: Macrumors running live udpates of WWDC

2007-06-11 Thread Ⓙⓐⓚⓔ
thanks Shelane! I've been tuned in since 10 am!!! On 6/11/07, Shelane Enos <[EMAIL PROTECTED]> wrote: Macrumors.com is running a "continuous" AJAX update of the keynote address of WWDC. No more "update in 60 seconds" countdown. -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: [ot] String.split in Opera.

2007-06-10 Thread Ⓙⓐⓚⓔ
ript:alert("hello there Opera".split(/\b/).length) > > Firefox says 5 , safari says 6, Opera says 15! > > it really got me confused while writing some jQuery code! > > now I use $.browser.opera ? /(\s+)/ : /\b/ ; instead. > > Ouch, I didn't realize there was that much of a difference! -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: [ot] String.split in Opera.

2007-06-10 Thread Ⓙⓐⓚⓔ
WWIED? What would IE do? On 6/10/07, Matt Stith <[EMAIL PROTECTED]> wrote: o.O damn, like you said, i didnt know there was that big of a difference! On 6/10/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED] > wrote: > > safari says 3 for > javascript:alert("hello there Opera".split

[jQuery] Re: [ot] String.split in Opera.

2007-06-10 Thread Ⓙⓐⓚⓔ
safari says 3 for javascript:alert("hello there Opera".split(/(\s+)/).length) On 6/10/07, Matt Stith <[EMAIL PROTECTED]> wrote: why not just use /(\s+)/ in firefox too then? It gives me the correct number of 5. On 6/10/07, Ⓙⓐⓚⓔ < [EMAIL PROTECTED]> wrote: > > j

[jQuery] [ot] String.split in Opera.

2007-06-10 Thread Ⓙⓐⓚⓔ
javascript:alert("hello there Opera".split(/\b/).length) Firefox says 5 , safari says 6, Opera says 15! it really got me confused while writing some jQuery code! now I use $.browser.opera ? /(\s+)/ : /\b/ ; instead. Ouch, I didn't realize there was that much of a difference!

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-10 Thread Ⓙⓐⓚⓔ
keep me posted!! You may also need : ajaxSetup({contentType: "application/x-www-form-urlencoded; charset="}) On 6/10/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote: Oscar, you can play with the jQuery from my branch (not released, and just to try it... no guarantees!!) http://jqueryj

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-10 Thread Ⓙⓐⓚⓔ
Oscar, you can play with the jQuery from my branch (not released, and just to try it... no guarantees!!) http://jqueryjs.googlecode.com/svn/branches/jake-dev/dist/ On 6/10/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote: oops! that's on the googlegroups site. On 6/10/07, Ⓙⓐⓚⓔ <[EMAIL PRO

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-10 Thread Ⓙⓐⓚⓔ
oops! that's on the googlegroups site. On 6/10/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote: $.pair = function(f,v) {return escape(f) + "=" + escape(v)}; and all your 'get' parameters use the new encoding. If you care to test... I'll save up a full version on the

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-10 Thread Ⓙⓐⓚⓔ
i-ascii chars seem to work.. I tested with a ö (only) On 6/10/07, oscar esp <[EMAIL PROTECTED]> wrote: You are the man :-P In order to use it. then I only need add the js ¿? or I need to call a extra code!!! On 10 jun, 18:44, "Ⓙⓐⓚⓔ" <[EMAIL PROTECTED]> wrote: > He

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-10 Thread Ⓙⓐⓚⓔ
roblem realted with charsets as you know. Could I use this code in order to fix my problem? On 10 jun, 06:00, "Ⓙⓐⓚⓔ" <[EMAIL PROTECTED]> wrote: > http://dev.jquery.com/ticket/1289 > > On 6/9/07, Brandon Aaron <[EMAIL PROTECTED]> wrote: > > > > > > > &

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-09 Thread Ⓙⓐⓚⓔ
http://dev.jquery.com/ticket/1289 On 6/9/07, Brandon Aaron <[EMAIL PROTECTED]> wrote: Be sure to add this to trac. -- Brandon Aaron On 6/9/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote: > > I also added to the patch renaming the parameter 'xml' and sometimes 'r'

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-09 Thread Ⓙⓐⓚⓔ
atch seems to make the packed size of jQuery even smaller. > > $.pair is used in param (serialize) and can easily be overriden. > > as in > $.pair = function(f,v) {return escape(f) + "=" + escape(v)}; > $.ajax({ > url: "/test.cgi", > data: {foo:'Jörn'}, > success: function(){console.log(arguments)} > }) -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: select td 2 levels up

2007-06-07 Thread Ⓙⓐⓚⓔ
ust couldn't get it looking the way I want in IE6. Oh well, ugly it is! - Original Message - *From:* Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> *To:* jquery-en@googlegroups.com *Sent:* Thursday, June 07, 2007 11:09 AM *Subject:* [jQuery] Re: select td 2 levels up oops Matt. if this is th

[jQuery] Re: select td 2 levels up

2007-06-07 Thread Ⓙⓐⓚⓔ
oops Matt. if this is the in Ha Ha yours breaks

[jQuery] Re: select td 2 levels up

2007-06-07 Thread Ⓙⓐⓚⓔ
element two levels up from the > clicked > div element. > > I have this, which works, but it's ugly. > > > $(this).parents("td:first").parents("td:first").attr("class","greenback"); > > Is there a cleaner way? > > - Josh > > > -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] encodeURIComponent localized for custom encoding

2007-06-07 Thread Ⓙⓐⓚⓔ
is used in param (serialize) and can easily be overriden. as in $.pair = function(f,v) {return escape(f) + "=" + escape(v)}; $.ajax({ url: "/test.cgi", data: {foo:'Jörn'}, success: function(){console.log(arguments)} }) PS posted here because the de

[jQuery] Re: processData:false in ajax calls?

2007-06-06 Thread Ⓙⓐⓚⓔ
pop in their own encoder > by simply overwriting $.encode. > > MIke > > > On 6/6/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote: > > I trie $.ajax({ > > url: "/test.cgi", > > processData: false, > >

[jQuery] Re: processData:false in ajax calls?

2007-06-06 Thread Ⓙⓐⓚⓔ
d make it much easier for someone to pop in their own encoder by simply overwriting $.encode. MIke On 6/6/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote: > I trie $.ajax({ > url: "/test.cgi", > processData: false, >

[jQuery] Re: jQuery core charset???????????(please help!!!!me!)

2007-06-06 Thread Ⓙⓐⓚⓔ
been deprecated. http://developer.mozilla.org/en/docs/Core_JavaScript_1.5_Reference:Deprecated_Features#Escape_Sequences Mike On 6/6/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote: > Oscar, > I've put together an ajax call that passes iso8859-1 instead of utf-8. It's > not pretty but s

[jQuery] Re: jQuery core charset???????????(please help!!!!me!)

2007-06-06 Thread Ⓙⓐⓚⓔ
Oscar, I've put together an ajax call that passes iso8859-1 instead of utf-8. It's not pretty but shows that by doing your own serialize the server sees iso chars instead of utf. $(function(){ $.ajax({ url: "/test.cgi", processData: false, data: 'foo=

[jQuery] Re: processData:false in ajax calls?

2007-06-06 Thread Ⓙⓐⓚⓔ
John meant by xml ... no magic happens! data: 'foo=Jörn', gave me: foo=J%C3%B6rn data: 'foo='+ escape('Jörn'), gave me foo=J%F6rn which looks like pretty good ascii encoding.. ! perhaps we need an alternate $.serialize for these

[jQuery] Re: processData:false in ajax calls?

2007-06-06 Thread Ⓙⓐⓚⓔ
has anyone used it to send an xml doc??? That's what the doc says... I guess I'll just have to try it! On 6/6/07, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: Ⓙⓐⓚⓔ wrote: > I'm a bit confused about processData parameter in the ajax call. > > From the doc it talks a

[jQuery] Re: QuickTime control bar disappearing after .remove() and .load()

2007-06-06 Thread Ⓙⓐⓚⓔ
Anyway, this doesn't have any bearing on my JS problem. Aaron -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] processData:false in ajax calls?

2007-06-06 Thread Ⓙⓐⓚⓔ
I'm a bit confused about processData parameter in the ajax call. From the doc it talks about sending a dom node to the server, that sounds pretty strange. What is it used for? From the code it looks like a perfect hook to send non utf-8 data (iso-8859-1). Has anyone used it??? -- Ⓙⓐⓚⓔ -

[jQuery] Re: QuickTime control bar disappearing after .remove() and .load()

2007-06-06 Thread Ⓙⓐⓚⓔ
st.html The error: Error: uncaught exception: [Exception... "String contains an invalid character" code: "5" nsresult: "0x80530005 (NS_ERROR_DOM_INVALID_CHARACTER_ERR)" location: "http:// www.andcuriouser.com/sandbox/jqueryqt/test.html Line: 7"] Thanks, Aaron -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: Processing ajax load content before it gets added to DOM ?

2007-06-05 Thread Ⓙⓐⓚⓔ
nt is not in the DOM yet. Even if I do: function ... $('#foo').load("/get/733/"); $('#foo a').each(function() { this.target = "_blank"; }); It doesn't work. Again, perhaps because the DOM update doesn't occur until the function returns? Is this correct? Any ideas what I could be doing wrong here? Thx, Sandy -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: What event is fired when all images are loaded and displayed?

2007-06-05 Thread Ⓙⓐⓚⓔ
works correctly once the images are cached. Is there another event that gets fired when absolutely everything is ready? I don't know of one... -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: [ot] hijacking threads for non-threaded readers.

2007-06-05 Thread Ⓙⓐⓚⓔ
that is the normal behavior! You just did it... and so did I! On 6/5/07, Sean Catchpole <[EMAIL PROTECTED]> wrote: On 6/5/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote: > So, for us gmail users, we have to remember to compose a new message , > rather then hitting reply and changing the

[jQuery] [ot] hijacking threads for non-threaded readers.

2007-06-05 Thread Ⓙⓐⓚⓔ
use gmail, gmail intelligently shades new lines in a reply... so the changes stand out.. and this gets shot to ___ when you use another e-mailler. -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: Slideshow with unknown amount of images

2007-06-04 Thread Ⓙⓐⓚⓔ
searches the dir and hooks the text, then diddles the links. using http://jpassoc.com/js/jquery-kidsbook.js On 6/4/07, Mike Alsup <[EMAIL PROTECTED]> wrote: Jake, this plugin is really cool! Thanks. Mike > http://jqueryjs.googlecode.com/svn/trunk/plugins/traverseDir/ -- Ⓙⓐⓚⓔ - יע

[jQuery] Re: Slideshow with unknown amount of images

2007-06-04 Thread Ⓙⓐⓚⓔ
ECTED] > wrote: > > > Ⓙⓐⓚⓔ schrieb: > > My dog does that! > > > > Actually we do it for him... he just sits for pictures... I wrote a > plugin > > http://jqueryjs.googlecode.com/svn/trunk/plugins/traverseDir/ > > < http://jqueryjs.googlecode.com/svn/tr

[jQuery] Re: Slideshow with unknown amount of images

2007-06-04 Thread Ⓙⓐⓚⓔ
so the best method would be to just cycle a whole directory of images, at least if I want to avoid server side scripting. Is this possible in any way using JavaScript and/or jQuery? I fear it's not, but maybe you have a hint or something… Thanks in advance, Arne -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: jQuery core charset???????????(please help!!!!me!)

2007-06-03 Thread Ⓙⓐⓚⓔ
ple mention things in technical terms. Hope you can use little layman terms to explain in this thread as to how is it happening and what can be done. I am sure many would be benefited by this explanation. Thanks again On Jun 3, 10:38 pm, "Ⓙⓐⓚⓔ" <[EMAIL PROTECTED]> wrote: > ok t

[jQuery] Re: Plugin to link words/phrases

2007-06-03 Thread Ⓙⓐⓚⓔ
... less than spectacular. The concept is similar to > those in-text ads, except without the popups/bubbles. (Even less > spectacular-sounding.) > > I was wondering if there already existed a plugin for this or similar > functionality. > > I was also wondering if it would

  1   2   3   >