[jQuery] Re: Problem with globalEval

2007-05-27 Thread Ⓙⓐⓚⓔ
( window, data ); } -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: Problem with globalEval

2007-05-27 Thread Ⓙⓐⓚⓔ
The older browsers that jQuery doesn't support? On 5/27/07, Matt Stith [EMAIL PROTECTED] wrote: The HTML comments are to hide the script from older browsers that dont understand javascript. On 5/27/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: why do you have !-- comments -- instead of /* comments

[jQuery] Re: Problem with globalEval

2007-05-27 Thread Ⓙⓐⓚⓔ
, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: The older browsers that jQuery doesn't support? On 5/27/07, Matt Stith [EMAIL PROTECTED] wrote: The HTML comments are to hide the script from older browsers that dont understand javascript. On 5/27/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: why do you have

[jQuery] Re: Safari append to empty div

2007-05-27 Thread Ⓙⓐⓚⓔ
. But, safari can't seem to append html to empty div's (or perhaps any div) - is there a fix to this? im doing something like this: var str = 'lorem ipsum'; $(#emptyDiv).append(str); But nothing happens, works in firefox though =/ -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: Safari append to empty div

2007-05-27 Thread Ⓙⓐⓚⓔ
(); }); /script /head body div id=emptyDiv/div /body /html On 5/27/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: Safari makes lots of false steps in its efforts at optimization. I always try the webkit version at http://nightly.webkit.org/ If it still

[jQuery] Debugging jQuery 0.2

2007-05-27 Thread Ⓙⓐⓚⓔ
A minor upgrade. a neat feature to help debugging bound events, like click and keyup... plus clicklogger to report back where your users clicked and when! http://jqueryjs.googlecode.com/svn/trunk/plugins/debug/ -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: Loading before teh DOM is ready

2007-05-25 Thread Ⓙⓐⓚⓔ
the $(document).ready but its dont work, so i wanna know how the best way to show some Loading div before all docuemnt be ready? -- []´s Jeanwww.suissa.info Ethereal Agencywww.etherealagency.com -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: Safari, Thickbox 3 and rolling over images = glitch?

2007-05-24 Thread Ⓙⓐⓚⓔ
://www.atkinshomebuilders.com/photo-gallery.html Does anyone have any idea why this might be happening? It works great in IE and FF for the PC as well as FF for the Mac. -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: form plugin

2007-05-22 Thread Ⓙⓐⓚⓔ
version of the form plugin? -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: dealing with spam on the jQuery list.

2007-05-22 Thread Ⓙⓐⓚⓔ
of the jQuery team to handle, I would be willing to help. -- Benjamin Sterling http://www.KenzoMedia.com http://www.KenzoHosting.com -- Benjamin Sterling http://www.KenzoMedia.com http://www.KenzoHosting.com -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: The best practice to do this

2007-05-22 Thread Ⓙⓐⓚⓔ
/22/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: $(#mytext).keyup would be called for every character entered... if they hit a return (or enter or tab) you could insert an middot; Is that what you want?? On 5/22/07, Jean Nascimento [EMAIL PROTECTED] wrote: great, but i want to simule a list

[jQuery] Re: dealing with spam on the jQuery list.

2007-05-22 Thread Ⓙⓐⓚⓔ
://www.KenzoHosting.com -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: OT: XML vs JSON

2007-05-22 Thread Ⓙⓐⓚⓔ
to recognize arrays is great. However, there is strength of xml in that order can be preserved. I can not think of a way to implement this in json. Is it possible and I am simply blind to the truth? XML: pbTitle/biSubtitle/ibAuthor/b/p JSON: {p:{b:[Title,Author],i:Subtitle}} ~Sean -- Ⓙⓐⓚⓔ

[jQuery] Re: OT: XML vs JSON

2007-05-22 Thread Ⓙⓐⓚⓔ
this output: Author-Subtitle- var json = {p:{b:Title,i:Subtitle,b:Author}}; for(x in json.p) document.write(json.p[x]+-); And the following code produces this output: Title,Author-Subtitle- var json = {p:{b:[Title,Author],i:Subtitle}}; for(x in json.p) document.write(json.p[x]+-); ~Sean -- Ⓙⓐⓚⓔ

[jQuery] Re: Debugging jQuery

2007-05-22 Thread Ⓙⓐⓚⓔ
it available! On May 21, 5:21 pm, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: Now I start off closed, and use a light blue background in the debug div. -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: Debugging jQuery

2007-05-22 Thread Ⓙⓐⓚⓔ
can leave the code in there without reducing performance, turning it on when I need to troubleshoot. On May 22, 3:49 pm, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: thanks! I'm adding some of the firebug commands. console.time timeEnd are working. Is there another command that you like to run without

[jQuery] Re: Debugging jQuery

2007-05-22 Thread Ⓙⓐⓚⓔ
://www.KenzoHosting.com -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: Debugging jQuery

2007-05-21 Thread Ⓙⓐⓚⓔ
the timing functions to compare performance between firefox and IE since there is no profiler. On May 20, 8:53 pm, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: Yes, It does some similar things, and steps all over firebug lite. Is there a feature in firebug lite that you really like? I'm sure I can incorporate

[jQuery] Re: Debugging jQuery

2007-05-21 Thread Ⓙⓐⓚⓔ
try the latest update at http://jqueryjs.googlecode.com/svn/trunk/plugins/debug/ On 5/21/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: I think I do a better job with objects! Both simple and jQuerys. But I didn't even try timings. I show the same info as full firebug, with a mouseover/title of the dom

[jQuery] Re: Streaming information from a server

2007-05-21 Thread Ⓙⓐⓚⓔ
do this? Thanks Peter -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: RSS Feed trouble in IE (bug?)

2007-05-21 Thread Ⓙⓐⓚⓔ
My feed is formatted atom from Feedburner. The works fine in Firefox. IE6/7 gives no love. It can't find anything, which is wierd because it's not doing anything particularly special. Is this a bug? Thanks, Glen -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: dealing with spam on the jQuery list.

2007-05-21 Thread Ⓙⓐⓚⓔ
PROTECTED] wrote: here here! -js On 5/21/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: Gmail deals pretty well with spam, but it has to be told! I mark the spam messages as spam. Gmail gets the idea, and the abuser's mail is all marked spam. If enough people using gmail, just mark

[jQuery] Re: Debugging jQuery

2007-05-21 Thread Ⓙⓐⓚⓔ
up the page I get a blue line near the bottom - not a panel with a blue border, just a blue line. When I mouse over the line it says shift-click to close No debug info either. This is in IE7. On May 21, 9:49 am, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: try the latest update athttp

[jQuery] Re: Debugging jQuery

2007-05-21 Thread Ⓙⓐⓚⓔ
try this version... starts the debug div minimized, and tries to make console calls available if neither firebug or firebug lite is used. http://jqueryjs.googlecode.com/svn/trunk/plugins/debug/ thanks for the feedback! On 5/21/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: You have tiny pages! Starting

[jQuery] Re: Debugging jQuery

2007-05-21 Thread Ⓙⓐⓚⓔ
, that's what I use. On that note, if firebug is there and I use $.log will it log to the firebug console or yours? On May 21, 3:19 pm, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: it's a blue border top. I wanted it to look different than most of the pages I write! When you start throwing in debug log calls

[jQuery] Re: Debugging jQuery

2007-05-21 Thread Ⓙⓐⓚⓔ
Now I start off closed, and use a light blue background in the debug div. -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: datePicker v2 beta

2007-05-20 Thread Ⓙⓐⓚⓔ
anybody else had any luck packing this? Hi, I've just added some missing semicolons to the date picker sourcecode so that you can now pack it successfully with Dean Edwards' Packer, Cheers, Kelvin :) -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: datePicker v2 beta

2007-05-20 Thread Ⓙⓐⓚⓔ
to get it to work with packer here: http://dev.jquery.com/changeset/1931 Cheers, Kelvin :) Ⓙⓐⓚⓔ wrote: Kelvin, I thought packer only needed the final ; ... do you know the rules? is it as simple as making it work if you remove all linefeeds? On 5/20/07, *Kelvin Luck * [EMAIL PROTECTED

[jQuery] Re: Debugging jQuery

2007-05-20 Thread Ⓙⓐⓚⓔ
, this plugin breaks firebug.js which is my only source of information in IE : ( http://www.getfirebug.com/lite.html On May 19, 9:39 pm, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: Get yer red-hot debugging... http://jqueryjs.googlecode.com/svn/trunk/plugins/debug/ I would like any feedback!! On 5/19/07

[jQuery] Debugging jQuery

2007-05-19 Thread Ⓙⓐⓚⓔ
over the months, I've re-written my debug library several times. I'm pretty happy with this one. based on code from all over the place! I hope you can all read the attached file. jquery.debug.js Description: JavaScript source

[jQuery] Re: Debugging jQuery

2007-05-19 Thread Ⓙⓐⓚⓔ
That was my goal, after I get feedback and make sure nobody has anything better!!! On 5/19/07, Brandon Aaron [EMAIL PROTECTED] wrote: Looks great Jake. How about adding it to jQuery Plugins SVN? -- Brandon Aaron On 5/19/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: over the months, I've re-written my

[jQuery] Re: question about a javascript syntax

2007-05-18 Thread Ⓙⓐⓚⓔ
,anyone can explain it? great thanks! -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: IE Caching AJAX calls

2007-05-18 Thread Ⓙⓐⓚⓔ
. The work around is to make a unique GET (e.g., all the date/time bogus parameters) or to use POST instead. Seehttp://www.wwco.com/~wls/blog/2007/04/12/an-advanced-crash-course-in-... -wls -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: jquery.us

2007-05-18 Thread Ⓙⓐⓚⓔ
before I can submit the form. -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: IE Caching AJAX calls

2007-05-18 Thread Ⓙⓐⓚⓔ
. The work around is to make a unique GET (e.g., all the date/time bogus parameters) or to use POST instead. Seehttp://www.wwco.com/~wls/blog/2007/04/12/an-advanced-crash-course-in-... -wls -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: IE Caching AJAX calls

2007-05-18 Thread Ⓙⓐⓚⓔ
three methods are not cached. - Bil -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: getJSON() or post() parameter question

2007-05-17 Thread Ⓙⓐⓚⓔ
: {name: 'Joe', age: '24'} and use something like: post(' update.php', json.vars)? (Where json is the JSON object that is returned). -- http://www.cjordan.us --http://www.cjordan.us -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: What does jQuery return for 'null'?

2007-05-17 Thread Ⓙⓐⓚⓔ
', what does it return? -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: Convert xml string to dom document

2007-05-16 Thread Ⓙⓐⓚⓔ
#a10637769 Sent from the JQuery mailing list archive at Nabble.com. -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: Convert xml string to dom document

2007-05-16 Thread Ⓙⓐⓚⓔ
ps... this may not work in IE! On 5/16/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: if the files is xhtml (or xml of some type) and it's being served as text/html, the browser won't give you a dom. UNLESS you override the mime-type! beforeSend : function(req){req.overrideMimeType('text/xml')}, dataType

[jQuery] Re: Simple .load does not work in IE7

2007-05-16 Thread Ⓙⓐⓚⓔ
appreciated. I cannot figure out what I'm doing wrong :( Thanks, Sean -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: Simple .load does not work in IE7

2007-05-16 Thread Ⓙⓐⓚⓔ
from the website. Works in Firefox, same error in IE. On May 16, 5:15 pm, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: after I posted I noticed that your problem is in IE. did you try the not-packed version? the error might not be in your code, but in the jquery.js file. http://cigar.dynalias.org/test1

[jQuery] Re: Simple .load does not work in IE7

2007-05-16 Thread Ⓙⓐⓚⓔ
for the suggestions though. On May 16, 9:48 pm, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: if you have a link on the net, maybe some IE user can hit it... the code looked good to me, and runs for me on Opera, Firefox Safari. On 5/16/07, Sean [EMAIL PROTECTED] wrote: I just tried it on a different computer

[jQuery] Re: Simple .load does not work in IE7

2007-05-16 Thread Ⓙⓐⓚⓔ
agh! what does that mean is it the p inside the p IE hates me as much as I hate IE!!! On 5/16/07, Bil Corry [EMAIL PROTECTED] wrote: Ⓙⓐⓚⓔ wrote on 5/16/2007 9:05 PM: Bill, do a refresh for the guy, it's now on the full jQuery! Ok, now I get the error in the jQuery.js

[jQuery] Re: Simple .load does not work in IE7

2007-05-16 Thread Ⓙⓐⓚⓔ
, or it will crap on you! On 5/16/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: agh! what does that mean is it the p inside the p IE hates me as much as I hate IE!!! On 5/16/07, Bil Corry [EMAIL PROTECTED] wrote: Ⓙⓐⓚⓔ wrote on 5/16/2007 9:05 PM: Bill, do a refresh for the guy, it's now on the full

[jQuery] Re: Simple .load does not work in IE7

2007-05-16 Thread Ⓙⓐⓚⓔ
Explorer, defender of web standards! - Bil -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: Parse XML with IE

2007-05-15 Thread Ⓙⓐⓚⓔ
?, is there something specific about the XML file it can parse (ex: no node attributes). Regards, Phil -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: Parse XML with IE

2007-05-15 Thread Ⓙⓐⓚⓔ
have object Erro is launched on [C] == i suppose object is empty Works fine on firefox. Any idea? Phil Ⓙⓐⓚⓔ wrote: Phil, your code says: do a get, when it's complete look for rootnode. BUT, what if the response has no xml, is malformed, or got some other error. You're ignoring all possible

[jQuery] Re: Suggestion - A | B | C | - Navigation container

2007-05-13 Thread Ⓙⓐⓚⓔ
Good catch Sam, it's been updated over at google. http://jqueryjs.googlecode.com/svn/trunk/plugins/letters/ On 5/13/07, Sam Collett [EMAIL PROTECTED] wrote: On May 13, 2:10 am, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: Thanks Mario, I put it up in the plugins directory of the svn .http

[jQuery] Re: Text Highlighting from Search

2007-05-13 Thread Ⓙⓐⓚⓔ
a span ID=searchterm with the contents of jets daniel on the page. Looking for a jQuery way or plugin to highlight all the matching words. ( i.e. pick them out of the text and add a span class=highlight around them) Any plugins I should start with? Anyone do similar suff before? Glen -- Ⓙⓐⓚⓔ

[jQuery] Re: random images

2007-05-12 Thread Ⓙⓐⓚⓔ
you can see some random images, and reading them from a folder, on my dog Junior's site! http://jpassoc.com/junior All plug-in quality. On 5/12/07, Sharique [EMAIL PROTECTED] wrote: I want to show random images from a folder. How I can do this? Sharique -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ

[jQuery] Re: random images

2007-05-12 Thread Ⓙⓐⓚⓔ
it. Jake, you might want to package this on a sample page and submit it to the plugins page. Looks good. Glen On 5/12/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: you can see some random images, and reading them from a folder, on my dog Junior's site! http://jpassoc.com/junior All plug-in quality

[jQuery] Re: Suggestion - A | B | C | - Navigation container

2007-05-12 Thread Ⓙⓐⓚⓔ
Thanks Mario, I put it up in the plugins directory of the svn. http://jqueryjs.googlecode.com/svn/trunk/plugins/letters/ On 5/12/07, Mario Moura [EMAIL PROTECTED] wrote: Amazing, Thanks a lot, should be in Jquery Plugins page, Regards Mario 2007/5/12, Ⓙⓐⓚⓔ [EMAIL PROTECTED]: thanks Bill

[jQuery] Re: partially loaded ajax callback

2007-05-12 Thread Ⓙⓐⓚⓔ
I added it to my jquery branch http://jqueryjs.googlecode.com/svn/branches/jake-dev/src/ajax/ajax.js What happens now??? On 5/11/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: added to the bug tracker, http://dev.jquery.com/ticket/1172 On 5/10/07, Mike Alsup [EMAIL PROTECTED] wrote: Cool! I like

[jQuery] Re: The problem with jquery!!!

2007-05-12 Thread Ⓙⓐⓚⓔ
at with @. Then i want to getElementsByClass('jhide') and hide the explanation which is no longer relevant. How do i do this in jquery? Thanks for all of your help. -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: The problem with jquery!!!

2007-05-12 Thread Ⓙⓐⓚⓔ
. . -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: The problem with jquery!!!

2007-05-12 Thread Ⓙⓐⓚⓔ
john's trick should do the job with .html or .text On 5/12/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: The actual html reads span class=emailsomeonelt;atgt;somehwerecom/span Fahed Ⓙⓐⓚⓔ wrote: divjake at home /div renders as divjake at home /at/div for me in firefox 2. I guess

[jQuery] Re: The problem with jquery!!!

2007-05-12 Thread Ⓙⓐⓚⓔ
code: $(document).ready(function() { $(span.email).each(function(){ $(this).html( $(this).html().replace(at,@) ); }); $(p.jhide).hide(); }); Where and how would i use console.log(anything) to see what's going wrong? Fahed Ⓙⓐⓚⓔ wrote: john's trick should do the job with .html or .text On 5/12/07

[jQuery] Re: The problem with jquery!!!

2007-05-12 Thread Ⓙⓐⓚⓔ
http://jquery.glyphix.com/ the debug plugin! off http://docs.jquery.com/Plugins the main plugins page. On 5/12/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Can you point me to the plugin please? Ⓙⓐⓚⓔ wrote: console.log( $(p.jhide)) would show the p that just got hid, if it really found

[jQuery] Re: Suggestion - A | B | C | - Navigation container

2007-05-11 Thread Ⓙⓐⓚⓔ
As a plug in: ?xml version=1.0 encoding=utf-8 ? !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.1//EN http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd; html xmlns=http://www.w3.org/1999/xhtml; xml:lang=en head title letters /title script type=text/javascript

[jQuery] Re: Suggestion - A | B | C | - Navigation container

2007-05-11 Thread Ⓙⓐⓚⓔ
/11/07, Bil Corry [EMAIL PROTECTED] wrote: Ⓙⓐⓚⓔ wrote on 5/11/2007 5:06 PM: As a plug in: Very cool, thanks for sharing! - Bil -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: New plugin: simple character counter for textareas

2007-05-10 Thread Ⓙⓐⓚⓔ
counter won't be updated until the textarea loses focus. -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: New plugin: simple character counter for textareas

2007-05-10 Thread Ⓙⓐⓚⓔ
paste is a weird one! you get the paste contents in the event somewhere and yes, it's fired before the pasting is done! On 5/10/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: On May 10, 1:45 pm, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: since your code is quick, you can also bind mouseup and paste

[jQuery] Re: partially loaded ajax callback

2007-05-10 Thread Ⓙⓐⓚⓔ
= r.responseText $('#status').html(t.length) } }) }); On 5/9/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: since the dev list tickets system is down... I'll post here. What do you think of adding this code to ajax.js? it will allow better loading information

[jQuery] Re: jQuery svn browser broken. Some documentation unaccessible

2007-05-09 Thread Ⓙⓐⓚⓔ
Sent from the JQuery mailing list archive at Nabble.com. -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: New plugin: simple character counter for textareas

2007-05-09 Thread Ⓙⓐⓚⓔ
sorry, I meant $('html').parent().parent().size() and $('body').parent().parent().size() I'd guess body is 0 and html would croak... On 5/9/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: On May 8, 9:58 pm, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: hmm, what do you get for $('body') or $('html

[jQuery] Re: jQuery svn browser broken. Some documentation unaccessible

2007-05-09 Thread Ⓙⓐⓚⓔ
great! now how do I add a ticket?? http://dev.jquery.com/newticket doesn't work! On 5/9/07, John Resig [EMAIL PROTECTED] wrote: Yep! All the details are updated on the wiki: http://docs.jquery.com/Downloading_jQuery --John On 5/9/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: so I change svn co svn

[jQuery] Re: META Tag

2007-05-09 Thread Ⓙⓐⓚⓔ
://jquery.com $(meta).attr(content,500;url= http://commadot.com;); alert(meta); //results in same as first }); Good news. The first alert works. Bad news. The second one doesn't. Any ideas? Glen -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: META Tag

2007-05-09 Thread Ⓙⓐⓚⓔ
}); Good news. The first alert works. Bad news. The second one doesn't. Any ideas? Glen -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] partially loaded ajax callback

2007-05-09 Thread Ⓙⓐⓚⓔ
) + s.partial( xml, 'partial' ); + } }; // don't attach the handler to the request, just poll it instead -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: New plugin: simple character counter for textareas

2007-05-08 Thread Ⓙⓐⓚⓔ
this is. If I do $(em).parent().parent().size(), it returns 0. -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: AutoExec

2007-05-08 Thread Ⓙⓐⓚⓔ
is fine Is it possible? Regards Mario -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: New plugin: simple character counter for textareas

2007-05-08 Thread Ⓙⓐⓚⓔ
hmm, what do you get for $('body') or $('html') ?? On 5/8/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: On May 8, 4:11 pm, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: I remember reading the jQuery source, it's held in a div until it is put somewhere! I wonder if $(elem).parent().parent().size() == 0

[jQuery] Re: retrive how bytes are loaded...possible?

2007-05-07 Thread Ⓙⓐⓚⓔ
#a10351812 Sent from the JQuery mailing list archive at Nabble.com. -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: retrive how bytes are loaded...possible?

2007-05-07 Thread Ⓙⓐⓚⓔ
#a10351812 Sent from the JQuery mailing list archive at Nabble.com. -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ Ce message Envoi est certifié sans virus connu. Analyse effectuée par AVG. Version: 7.5.467 / Base de données virus: 269.6.5/792 - Date: 6/05/2007 21:01 -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: $.post send data problem

2007-05-07 Thread Ⓙⓐⓚⓔ
this but here goes: I'm sending something like this $.post(/scripts/login.php,{u:USER,p:PASS,r:STAY},function(txt) {$(div#+div).html(txt);}); but the php $_POST[''] array get's no data... now please tell me how stupid I am :) -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: HTML Node

2007-05-04 Thread Ⓙⓐⓚⓔ
is the truth? It seems unorthadox to put an ID on an HTML tag, but I don't see why it should be avoided if needed. (in rare circumstances) Thanks for the help. Glen -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: HTML Node

2007-05-04 Thread Ⓙⓐⓚⓔ
I guess when John Resig says CSS descriptors he really means it On 5/4/07, Glen Lipka [EMAIL PROTECTED] wrote: On 5/4/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: valid means passes the validater. it won't works means works ... id'ing the html is weird, but should work in most browsers

[jQuery] Re: $().load() and redirect

2007-05-03 Thread Ⓙⓐⓚⓔ
http://moje.sms.cz vs http://seznamka.sms.cz they may be the same server, but that doesn't count in javascript security. On 5/2/07, ATom [EMAIL PROTECTED] wrote: But this is the same site :-( Original and redirected page is seznamka.sms.cz -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: $().load() and redirect

2007-05-02 Thread Ⓙⓐⓚⓔ
Do you have an example that just shows the problem without much text ? JÁ činit ne mluvit Čech! On 5/2/07, ATom [EMAIL PROTECTED] wrote: I need load this page: http://seznamka.sms.cz/kategorie/seznamka/main_rpc.php?m_ido=sendlinkjs=1 -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: $().load() and redirect

2007-05-02 Thread Ⓙⓐⓚⓔ
= LWP::UserAgent-new; $ua-agent(NuBrowser/10.7 ); $res = $ua-request(HTTP::Request-new(GET = $ENV{QUERY_STRING} || http://www.woot.com/DefaultMicrosummary.ashx;)); $q = CGI-new; print $q-header($res-headers-{'Content-Type'}),$res-content; On 5/2/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: GET http

[jQuery] Re: OT: Suppress Apache Authentication

2007-05-02 Thread Ⓙⓐⓚⓔ
I found it's easy to catch a 400 range error in jquery, but not in safari! I ran a tiny $.ajax program where it tries to get a file from behind a .htaccess'ed directory... firefox opera returned .status = 401 and .statusText but safari returned null for .status (webkit returned 0)

[jQuery] Re: $().load() and redirect

2007-05-02 Thread Ⓙⓐⓚⓔ
oops, that's lower case 'content-type' On 5/2/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: if the second page does not require cookies from the client machine, and doesn't care what useragent gets it, you can use a small perl (or other language) program to fetch the page from the other site, then serve

[jQuery] Re: $().load() and redirect

2007-05-01 Thread Ⓙⓐⓚⓔ
have a sample of the behavior you are being plagued with? On 5/1/07, ATom [EMAIL PROTECTED] wrote: Nobody know it? -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: ErrorMsg: 'Permission denied to call method XMLHttpRequest.open'

2007-04-29 Thread Ⓙⓐⓚⓔ
(NS_ERROR_XPC_JS_THREW_STRING) location: unknown data: no] Anyone has any ideas on where I should check first? Thanks in advance. Michael -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: ErrorMsg: 'Permission denied to call method XMLHttpRequest.open'

2007-04-29 Thread Ⓙⓐⓚⓔ
-- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: Interacting with TR an TD

2007-04-28 Thread Ⓙⓐⓚⓔ
nbsp; is html. not javascript! Does IE do this any differently than firefox? ?xml version=1.0 encoding=utf-8 ? !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.1//EN http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd; html xmlns=http://www.w3.org/1999/xhtml; xml:lang=en head title

[jQuery] Re: $(...).children() vs $().childNodes()

2007-04-27 Thread Ⓙⓐⓚⓔ
(0).childNodes || [] ); }; Cheers, -js -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: Obsolete xml data islands

2007-04-26 Thread Ⓙⓐⓚⓔ
-- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: Why is IE messing with my mind?

2007-04-24 Thread Ⓙⓐⓚⓔ
This, of course, works fine on Firefox. Could someone tell me how to heal the pain on IE? Thanks, - Dave -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: Finding id of this

2007-04-24 Thread Ⓙⓐⓚⓔ
' + idofatag).toggle(); ?? That's my question. That you very much. Have a nice day. -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: Finding id of this

2007-04-24 Thread Ⓙⓐⓚⓔ
the id (areminder) in this case to now toggle the div div_areminder. How do I find the id of each of these a tags to apply toggle like this: find id method $('#div_' + idofatag).toggle(); ?? That's my question. That you very much. Have a nice day. -- Ⓙⓐⓚⓔ - יעקב

[jQuery] Re: Alternative way of reacting to clicked link?

2007-04-23 Thread Ⓙⓐⓚⓔ
. But for now, I need to handle those pages. Alessandro -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: what's the best way to catch malformed xml in an ajax call?

2007-04-23 Thread Ⓙⓐⓚⓔ
)) else surveyProcess(xml) } $.ajax({url:url,datatype:'xml',complete:surveyComplete}) On 4/23/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: success isn't successful, it just gets back the xml if successful or in the case of firefox, it seems to get a special parsererror (formatted as xml

[jQuery] Re: Specifying user agent with ajax

2007-04-22 Thread Ⓙⓐⓚⓔ
Firefox/2.0.0.3' }, function(data){ $('#testDiv').append(data); } ); but I don't think either of those are working. -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: Dean Edwards Packer Interface accordion.js...

2007-04-22 Thread Ⓙⓐⓚⓔ
el.accordionCfg.currentPanel = el.accordionCfg.currentPanel||0; if (el.accordionCfg.currentPanel == this.accordionPos) return; // rest of code -Dan -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: Specifying user agent with ajax

2007-04-22 Thread Ⓙⓐⓚⓔ
XMLhttpRequest and specifying the user agent in that request. It seemed to do the trick. Thanks anyway. :) -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: DOM manupulation problem

2007-04-22 Thread Ⓙⓐⓚⓔ
-- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: DOM manupulation problem

2007-04-22 Thread Ⓙⓐⓚⓔ
PROTECTED] wrote: Thanks Man! This is exactly why I want. I wonder why they do not manipulate this function to the JQuery's .html() function for xml documents ? anyway thanks alot for this sweet script :) On Apr 23, 7:21am, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: I've been using some code I threw together

[jQuery] what's the best way to catch malformed xml in an ajax call?

2007-04-22 Thread Ⓙⓐⓚⓔ
I use the error callback, but it doesn't get called back when the xml is malformed. Do I need to use the complete callback?? -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

<    1   2   3   >