[jQuery] Re: click vs click

2007-05-21 Thread Klaus Hartl
Alex Objelean wrote: This solution is good for Firefox, but does not work in IE.. :( Other tips? This solution works perfectly fine for the Tabs plugin in all major browsers. So maybe something is wrong with your code... -- Klaus

[jQuery] Re: newbie question: keypress vs keydown

2007-05-21 Thread james_027
Thanks a lot especially to your second post. :) cheers james On May 22, 11:59 am, "Richard Worth" <[EMAIL PROTECTED]> wrote: > On 5/21/07, Richard Worth <[EMAIL PROTECTED]> wrote: > > > > > On 5/21/07, james_027 <[EMAIL PROTECTED]> wrote: > > > > Hi, > > > > Is there a difference between to two?

[jQuery] Re: click vs click

2007-05-21 Thread Alex Objelean
This solution is good for Firefox, but does not work in IE.. :( Other tips? On May 17, 10:19 am, Klaus Hartl <[EMAIL PROTECTED]> wrote: > Alex wrote: > > I wonder, how in Xbrowser way can I make a difference between a normal > > userclickand a programmatic triggeredclick? Is it possible? > > > T

[jQuery] Broken link on discussion page

2007-05-21 Thread sethmason
Minor issue here The link to the jQuery Dev List on this page: http://docs.jquery.com/Discussion goes to a 404. It's going to http://jquery.com/mailman/listinfo/dev_jquery.com

[jQuery] Re: Help Test jQuery 1.1.3

2007-05-21 Thread Daemach
The tabs plugin uses the fadein/out effects - I'll bet it has something to do with a bug I just found. It's hard to describe - I'm just glad I could replicate it. Test case below. http://ideamill.synaptrixgroup.com/jquery/test/113fxbug.htm On May 21, 4:38 pm, "Aaron Heimlich" <[EMAIL PROTECTE

[jQuery] Re: Help Test jQuery 1.1.3

2007-05-21 Thread Daemach
You're right. When I was testing that it turns out that I wasn't passing any arguments to my function, and it would have behaved the same way in 1.1.2. However, my example is a good one - in this case, I still want the last object's properties applied. Does it make sense to modify the extend fu

[jQuery] Re: newbie question: keypress vs keydown

2007-05-21 Thread Richard Worth
On 5/21/07, Richard Worth <[EMAIL PROTECTED]> wrote: On 5/21/07, james_027 <[EMAIL PROTECTED]> wrote: > > > Hi, > > Is there a difference between to two? Any guidelines on which one to > use on a certion situation? > > There are three javascript events that can fire when a key is pressed: keydo

[jQuery] Re: newbie question: keypress vs keydown

2007-05-21 Thread Richard Worth
On 5/21/07, james_027 <[EMAIL PROTECTED]> wrote: Hi, Is there a difference between to two? Any guidelines on which one to use on a certion situation? There are three javascript events that can fire when a key is pressed: keydown keyup keypress Here's a great reference for figuring out wha

[jQuery] newbie question: keypress vs keydown

2007-05-21 Thread james_027
Hi, Is there a difference between to two? Any guidelines on which one to use on a certion situation? Thanks james

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

2007-05-21 Thread Erik Beeson
No, you can't make ajax calls out to a different domain. That's what we were talking about in your original thread about this: http://groups.google.com/group/jquery-en/browse_thread/thread/8270b3a1aa438b3c/81e4dee21be580c6?lnk=gst&q=simple+rss&rnum=1#81e4dee21be580c6 Usually the easy way to get

[jQuery] Re: Ajax: ASP returns JSON to client

2007-05-21 Thread Jeffrey Kretz
Sam, I'm hoping that by ASP you mean ASP.NET, because there is an easy solution for this. The problem lies in the fact that the Server.URLEncode class is NOT javascript-friendly. I solved this be accessing the MS javascript engine from within .NET, with: Microsoft.JScript.GlobalObject.encodeUR

[jQuery] Re: callback

2007-05-21 Thread Aaron Heimlich
On 5/21/07, james_027 <[EMAIL PROTECTED]> wrote: Wrong The Wrong Way (will not work!) $.get('myhtmlpage.html', myCallBack(param1, param2)); Try this: $.get('myhtmlpage.html', function() { myCallBack(param1, param2); }); Wrapping the call to myCallBack in an anonymous function should f

[jQuery] Re: callback

2007-05-21 Thread james_027
Hi, This is from How jQuery work from John, A callback is a function that is passed as an argument to another function and is executed after its parent function has completed. The special thing about a callback is that functions that appear after the "parent" can execute before the callback exec

[jQuery] Re: calling a function when you click off an element

2007-05-21 Thread MikeR
Here is a quick example I just threw together: http://www.infinitywebcreations.com/jquery.html Far from perfect, but it should give you an idea. On May 21, 5:13 pm, philo23 <[EMAIL PROTECTED]> wrote: > for example, in Google docs, you can pop up a little menu (eg: actions > menu), now when you

[jQuery] Re: calling a function when you click off an element

2007-05-21 Thread MikeR
Here is a quick example I just threw together: http://www.infinitywebcreations.com/jquery.html Far from perfect, but it should give you an idea. On May 21, 5:13 pm, philo23 <[EMAIL PROTECTED]> wrote: > for example, in Google docs, you can pop up a little menu (eg: actions > menu), now when you

[jQuery] Re: NEWS: jQuery Mentioned on MrBool.com

2007-05-21 Thread David
Bil Corry wrote: Benjamin Sterling wrote on 5/21/2007 12:58 PM: "However, it does not support a reusable programming model like an object oriented approach, so you should not expect thousands of lines of JQuery code to be a good asset to your project" can anyone clarify. Is this a complimen

[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: NEWS: jQuery Mentioned on MrBool.com

2007-05-21 Thread Benjamin Sterling
Thanks guys, that is what I thought, but the wording was throwing me off. I agree that you can create a good amount of re-usable code using jquery as a dom helper. -- Benjamin Sterling http://www.KenzoMedia.com http://www.KenzoHosting.com

[jQuery] Re: Ajax: ASP returns JSON to client

2007-05-21 Thread Bil Corry
Michael Geary wrote on 5/21/2007 4:13 PM: How would that help? decodeURI() or decodeURIComponent() don't change plus to space. Ah, so you're right. My bad for assuming a function to decode a URL would actually decode it according to the RFC. - Bil

[jQuery] Tab semplici e accessibili con jQuery (italian language)

2007-05-21 Thread gcgmail
Simply interface tabs-based. A tutorial in italian language with four different demos. http://javascript.html.it/articoli/leggi/2255/tab-semplici-e-accessibili-con-jquery/

[jQuery] Re: Help Test jQuery 1.1.3

2007-05-21 Thread Aaron Heimlich
I can confirm the same issue on Firefox 2.0.0.3, Safari 2.0.4 (build 419.3), and Opera 9.20 (build 3669) (all on Mac OS 10.4.9) On 5/21/07, Glen Lipka <[EMAIL PROTECTED]> wrote: Working tabs plugin with 1.1.2 http://www.marketo.com/about/contact.php Broken with 1.1.3 http://www.marketo.com/tem

[jQuery] Re: Help Test jQuery 1.1.3

2007-05-21 Thread Glen Lipka
On 5/21/07, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: Daemach wrote: > It appears that extend no longer extends objects with more than one > object. In 1.1.2 I could do: > > this.settings = jQuery.extend({}, this.defaults, > arguments.options, this.userOptionsFromCookie); // named to > il

[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! Startin

[jQuery] calling a function when you click off an element

2007-05-21 Thread philo23
for example, in Google docs, you can pop up a little menu (eg: actions menu), now when you click back onto the webpage some where, the dropdown menu disapears. I'm wondering, how can this be easily done. I've looked at the source code, and it seems that they have added , i've personaly tried this

[jQuery] Re: Ajax: ASP returns JSON to client

2007-05-21 Thread Michael Geary
> > In ASP, I am building a JSON object and escape the data using > > > > Server.URLEncode(strParmChoices) > > > > It seems this encodes blanks as a plus sign "+". > > > > Back in JavaScript, it looks like unescape("+") leaves the > > plus as a plus. I've band-aided the problem using... > Us

[jQuery] Re: Ajax: ASP returns JSON to client

2007-05-21 Thread Bil Corry
SamCKayak wrote on 5/21/2007 3:44 PM: In ASP, I am building a JSON object and escape the data using Server.URLEncode(strParmChoices) It seems this encodes blanks as a plus sign "+". Back in JavaScript, it looks like unescape("+") leaves the plus as a plus. I've band-aided the problem using

[jQuery] Re: Ajax: ASP returns JSON to client

2007-05-21 Thread Michael Geary
> From: SamCKayak > > In ASP, I am building a JSON object and escape the data using > > Server.URLEncode(strParmChoices) > > It seems this encodes blanks as a plus sign "+". > > Back in JavaScript, it looks like unescape("+") leaves the > plus as a plus. I've band-aided the problem using >

[jQuery] Re: Debugging jQuery

2007-05-21 Thread Ⓙⓐⓚⓔ
You have tiny pages! Starting it off closed sounds good though! I used to take over the console.log function... now it doesn't.. I'll look at firebug lite again I don't want to conflict if it's incuded. If the real firebug is there, it uses it. On 5/21/07, Daemach <[EMAIL PROTECTED]> wrote:

[jQuery] Re: Debugging jQuery

2007-05-21 Thread Daemach
I understand, but the blue line starts off in the middle of the page - it looks very strange ;) It might be better if it starts off closed until it starts getting log calls. Can you have it available at console.log as well so I don't have to change all of my code? If I'm logging to firebug, tha

[jQuery] Ajax: ASP returns JSON to client

2007-05-21 Thread SamCKayak
In ASP, I am building a JSON object and escape the data using Server.URLEncode(strParmChoices) It seems this encodes blanks as a plus sign "+". Back in JavaScript, it looks like unescape("+") leaves the plus as a plus. I've band-aided the problem using unescape(json.strParmChoices).replace(/\

[jQuery] Re: OT: jQuery - Doctype - Quirkness

2007-05-21 Thread Matt Stith
Nope, jQuery and most other javascript libraries (probably all of them) should work with almost any doctype. On 5/21/07, Fabien Meghazi <[EMAIL PROTECTED]> wrote: Hi all, Maybe this is a bit off topic, but I was wondering if a specific doctype should be used in order to build successfull apps

[jQuery] OT: jQuery - Doctype - Quirkness

2007-05-21 Thread Fabien Meghazi
Hi all, Maybe this is a bit off topic, but I was wondering if a specific doctype should be used in order to build successfull apps with jQuery ? I know that doctypes can change the behviour of css rendering so I was wondering if there was a prefered doctype to use when working with jQuery ? --

[jQuery] Trouble with calendar icon and datePicker v2

2007-05-21 Thread Chris W. Parker
Hello, Why doesn't $('#date').datePicker(); cause the calendar icon to appear anymore? Only thing I'm seeing now are the words "Choose Date". It worked fine before I upgraded. I've checked and rechecked the demo page and I don't see what Kelvin is doing different from myself *other* than him ass

[jQuery] Re: Debugging jQuery

2007-05-21 Thread Ⓙⓐⓚⓔ
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, it fills up. and turns into a scrolling div. the little demo debug.html shows this. On 5/21/07, Daemach <[EMAIL PROTECTED]> wrote: I downloaded it, and when I fi

[jQuery] Re: Regex experts: search/replace operations

2007-05-21 Thread Jörn Zaefferer
Dan G. Switzer, II wrote: This is a little off-topic, but when doing a regex search and replace within a text editor, how can I replace one character within a specific pattern? I want to get rid of newlines within tags. This finds them: [^<]+(\r\n).+ How do I specify that I only want to repl

[jQuery] Re: Help Test jQuery 1.1.3

2007-05-21 Thread Jörn Zaefferer
Daemach wrote: It appears that extend no longer extends objects with more than one object. In 1.1.2 I could do: this.settings = jQuery.extend({}, this.defaults, arguments.options, this.userOptionsFromCookie); // named to illustrate purpose Now, only the arguments.options values extend th

[jQuery] Re: Regex experts: search/replace operations

2007-05-21 Thread Daemach
I get hung up on the silliest things Thanks Dan ;) On May 21, 2:50 pm, "Dan G. Switzer, II" <[EMAIL PROTECTED]> wrote: > >This is a little off-topic, but when doing a regex search and replace > >within a text editor, how can I replace one character within a > >specific pattern? > > >I want t

[jQuery] Re: Debugging jQuery

2007-05-21 Thread Daemach
I downloaded it, and when I fire 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 lates

[jQuery] Re: Ajax Data Format Recommendation

2007-05-21 Thread Christopher Jordan
Oops... I typed out my examples too fast. That first example of the data parameter should read: data: "MyVar1=" + myJSVar1 + "&MyVar2=SomeConstantString"; I forgot the ampersand. *sheepish grin* Cheers, Chris Christopher Jordan wrote: Sam, Instead of $.get()... I'd use $.ajax(). Check out

[jQuery] Re: Ajax Data Format Recommendation

2007-05-21 Thread Christopher Jordan
Sam, Instead of $.get()... I'd use $.ajax(). Check out this post from Brian Ronk on basically the same subject. Read

[jQuery] Re: Help Test jQuery 1.1.3

2007-05-21 Thread Brandon Aaron
It appears that the helper method "left" has been removed from the API. Try replacing left with $().css('left', 260); -- Brandon Aaron On 5/21/07, Dragan Krstic <[EMAIL PROTECTED]> wrote: 2007/5/21, Brandon Aaron <[EMAIL PROTECTED]>: > > Do you know what version/rev of the dimensions plugin y

[jQuery] Re: Regex experts: search/replace operations

2007-05-21 Thread Dan G. Switzer, II
>This is a little off-topic, but when doing a regex search and replace >within a text editor, how can I replace one character within a >specific pattern? > >I want to get rid of newlines within tags. This finds them: >[^<]+(\r\n).+ > >How do I specify that I only want to replace the matched set?

[jQuery] Re: Help Test jQuery 1.1.3

2007-05-21 Thread Daemach
It appears that extend no longer extends objects with more than one object. In 1.1.2 I could do: this.settings = jQuery.extend({}, this.defaults, arguments.options, this.userOptionsFromCookie); // named to illustrate purpose Now, only the arguments.options values extend the defaults. Is t

[jQuery] Re: Color Label on Form Validation Error

2007-05-21 Thread Jörn Zaefferer
Dan G. Switzer, II wrote: What I've done in the past is just add an onfocus event to remove the classes: // for any input field in the signup form, add a onfocus event $("#userForm input").focus( // everything in this function is executed function (){ // $(this)

[jQuery] Re: Help Test jQuery 1.1.3

2007-05-21 Thread Dragan Krstic
2007/5/21, Brandon Aaron <[EMAIL PROTECTED]>: Do you know what version/rev of the dimensions plugin you are using? What browser(s) are you having problems with? I'm not quite sure. I'm using striped off version. File is created on January,18th. In firebug I'm getting the following: headlines

[jQuery] Regex experts: search/replace operations

2007-05-21 Thread Daemach
This is a little off-topic, but when doing a regex search and replace within a text editor, how can I replace one character within a specific pattern? I want to get rid of newlines within tags. This finds them: [^<]+(\r\n).+ How do I specify that I only want to replace the matched set?

[jQuery] Re: Help Test jQuery 1.1.3

2007-05-21 Thread Brandon Aaron
Do you know what version/rev of the dimensions plugin you are using? What browser(s) are you having problems with? Here is the latest version's test suite running on 1.1.3: http://brandonaaron.net/jquery/plugins/dimensions/test/unit.html -- Brandon Aaron On 5/21/07, Dragan Krstic <[EMAIL PROT

[jQuery] Re: Help Test jQuery 1.1.3

2007-05-21 Thread Dragan Krstic
I have a problems with dimensions plugin. width and height couldn't be read

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

2007-05-21 Thread Ⓙⓐⓚⓔ
Sean: Nabble gets visited by the e-mail address harvesting bots! I hope we can get rid of it! Does Nabble do anything that Google doesn't? Chris: Sure, not everyone uses gmail client, you will just have to filter on your own with whatever spam filtering software you have. Perhaps gmail server wi

[jQuery] Re: Help Test jQuery 1.1.3

2007-05-21 Thread Jörn Zaefferer
John Resig wrote: Hi Everyone - A test build of the upcoming 1.1.3 release is ready for everyone to try. We need to be super-sure that there haven't been any regressions in this release, and in order to do that we'd like you to download this alpha release and try it in place of jQuery 1.1.2 (w

[jQuery] Re: $(document).ready(function() {

2007-05-21 Thread Matt Stith
It can be used as many times as you like, anywhere after jquery is included. The scripts will run in the order they were added, after the DOM is ready. On 5/21/07, SamCKayak <[EMAIL PROTECTED]> wrote: Can $(document).ready(function() { appear in an included

[jQuery] Re: Color Label on Form Validation Error

2007-05-21 Thread Dan G. Switzer, II
>> I set up a basic demo - http://nonsponsored.com/validation/ - but it's >> really not much different than your example form. So with showErrors, >> you're saying I'm able color the Name, Email and Password labels also? >> I'm not quite following how you can target those labels. >> >Ok, I've trie

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

2007-05-21 Thread Glen Lipka
I just checked, and we found the exact same problem at the exact same time. :) Thaks man, this is perfect. Thank you so much. I think this is MS Word being paste into Typepad. its the dash character. We will edit the blog source. I just finished figuring out a PHP version too. (My head hurts!)

[jQuery] Re: Validation function help request

2007-05-21 Thread Jörn Zaefferer
Luc, having written a pretty complete validation plugin I could give you quite a lot of tips on how to build one. But I tend to think that it makes much more sense if you could just tell me what need from the plugin and I could tell you how you can achieve that with my plugin. And in case it

[jQuery] Re: Color Label on Form Validation Error

2007-05-21 Thread Jörn Zaefferer
Scott Moore wrote: I set up a basic demo - http://nonsponsored.com/validation/ - but it's really not much different than your example form. So with showErrors, you're saying I'm able color the Name, Email and Password labels also? I'm not quite following how you can target those labels. Ok, I

[jQuery] Re: Ajax Data Format Recommendation

2007-05-21 Thread SamCKayak
I found JSON on the return trip to work fine. Sometimes the answers come to me as soon as I post. Sam

[jQuery] Re: Chili 1.8 gets chainability

2007-05-21 Thread Andrea Ercolino
No problems at all :-) Chili safely use the $ shortcut by means of this trick: ( function( $ ) { /* $ is really jQuery here */ } )( jQuery ); Stosh wrote: > > > On May 17, 4:11 pm, Andrea Ercolino <[EMAIL PROTECTED]> wrote: >> I've just released http://notelog.com/category/chili/Chili 1.8

[jQuery] Re: Help Test jQuery 1.1.3

2007-05-21 Thread Andrea Ercolino
I've just tested it with Chili 1.8 and all is ok. Just a little thing: the show() / hide() functions work much slower than before and they have a 'nice' (quoted because not needed nor requested) transition effect, which is maybe responsible for the slow-down factor. hide() is a bit faster than s

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

2007-05-21 Thread Christopher Jordan
We'd have to mark them as spam via the gmail web client though, right? I use Thunderbird to get my gmail. I almost never visit the actual gmail web client. :o' Chris (J)(a)(k)(e) wrote: Jean, It's a valid fear... but have no fear! those google boys are (t)here! I've marked all the spam, as

[jQuery] Ajax Data Format Recommendation

2007-05-21 Thread SamCKayak
I did a little Json and some XML using prototype last year. Now I have jQuery and need to pass about 4 string parameters to the server, query a database, and return about 4 string parameters. My current method to post the get is: $.get("../survey/postsurveytodb.asp", { surveyid:

[jQuery] Re: NEWS: jQuery Mentioned on MrBool.com

2007-05-21 Thread Dan G. Switzer, II
>Rey, I'm a little dense here, but not exactly sure what he is trying to say >with this line: > > "However, it does not support a reusable programming model like an object >oriented approach, so you should not expect thousands of lines of JQuery >code to be a good asset to your project" > >can any

[jQuery] Re: NEWS: jQuery Mentioned on MrBool.com

2007-05-21 Thread Bil Corry
Benjamin Sterling wrote on 5/21/2007 12:58 PM: "However, it does not support a reusable programming model like an object oriented approach, so you should not expect thousands of lines of JQuery code to be a good asset to your project" can anyone clarify. Is this a compliment or a knock agains

[jQuery] Re: $(document).ready(function() {

2007-05-21 Thread Andy Matthews
It can be included. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of SamCKayak Sent: Monday, May 21, 2007 2:52 PM To: jQuery (English) Subject: [jQuery] $(document).ready(function() { Can $(document).ready(function() { appear in an included

[jQuery] Re: NEWS: jQuery Mentioned on MrBool.com

2007-05-21 Thread Benjamin Sterling
Rey, I'm a little dense here, but not exactly sure what he is trying to say with this line: "However, it does not support a reusable programming model like an object oriented approach, so you should not expect thousands of lines of JQuery code to be a good asset to your project" can anyone clari

[jQuery] $(document).ready(function() {

2007-05-21 Thread SamCKayak
Can $(document).ready(function() { appear in an included

[jQuery] Re: How to handle Pseudo leak in IE?

2007-05-21 Thread Jacky
I have some problem in creating the ticket. It always timeout when I submitting... I will try later. Anyway, here is an example about it. Load it in IESieve , cilck refresh rows or set interval and watch the memory and dom usage. Test Mem Leak in IE6 var da

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

2007-05-21 Thread Sean O
For those (like me), who interface with the group via Nabble, perhaps there's something server-side to kill the weeds... (not sure what can be accomplished in Google Group management) Dumping everything with a ".biz" might be a good start, unless folks here are using one of those domains legitim

[jQuery] Re: The best practice to do this

2007-05-21 Thread Jake McGraw
Ahh, I see what you're getting at: HTML: JavaScript: $("#mytext").keypress(function(event){ if (!event.keyCode||event.keyCode!=13) return; $("#mylist").append(""+$(this).val()+""); $(this).val(""); }); Works in Firefox. - jake On 5/21/07, Jean Nascimento <[EMAIL PROTECTED]> wrote: Tk

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

2007-05-21 Thread Ⓙⓐⓚⓔ
Jean, It's a valid fear... but have no fear! those google boys are (t)here! I've marked all the spam, as it comes in and the new spam from the same guy goes directly to spam! On 5/21/07, Jean Nascimento <[EMAIL PROTECTED]> wrote: Exactly dont reply this spamers i was affraid to mark spam and t

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

2007-05-21 Thread Jean Nascimento
Exactly dont reply this spamers i was affraid to mark spam and the all list beeing marked On 5/21/07, Benjamin Sterling <[EMAIL PROTECTED]> wrote: I agree with Jake, but we need not reply to those spam mails because I have found that those people who reply get lumped into the spam filter and get

[jQuery] Re: The best practice to do this

2007-05-21 Thread Jean Nascimento
Tkz for the tips but using jQuery it will show ??? On 5/21/07, Jake McGraw <[EMAIL PROTECTED]> wrote: Jean: Have you looked at some of the WYSIWYG (What You See Is What You Get) JavaScript text editors? TinyMCE is a popular choice to do what you asked and much more. - jake On 5/20/07, Jean

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

2007-05-21 Thread Benjamin Sterling
I agree with Jake, but we need not reply to those spam mails because I have found that those people who reply get lumped into the spam filter and gets put in the spam folder. On 5/21/07, Jonathan Sharp <[EMAIL PROTECTED]> wrote: here here! -js On 5/21/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote: > >

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

2007-05-21 Thread Jonathan Sharp
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 the spam as spam... every gmail user

[jQuery] Re: Initial images not showing up in IE6

2007-05-21 Thread mpmchugh
Hi Jan, That did the trick. That wacky IE! Thanks for the tip! -Michael Jan Sorgalla wrote: > > > Hi, > > On May 19, 1:47 am, mpmchugh <[EMAIL PROTECTED]> wrote: >> I'm having a problem.Initialimages are not showing up in IE until a >> millisecond before autoscroll advances, or if manual

[jQuery] dealing with spam on the jQuery list.

2007-05-21 Thread Ⓙⓐⓚⓔ
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 the spam as spam... every gmail user will have the spam thrown into the spam folder. (I think!) Resp

[jQuery] Google Code SVN Issue

2007-05-21 Thread Rey Bango
Hi guys, When I try checkout using TortoiseSVN (latest) via http://jqueryjs.googlecode.com/svn/trunk/, I get the following error: Error: REPORT request failed on '/svn/!svn/vcc/default' Error: REPORT of '/svn/!svn/vcc/default': 502 Bad Gateway (http://jqueryjs.googlecode.com) Anyone seen t

[jQuery] Re: Free Greeting cards!

2007-05-21 Thread tzmedia
Looks like some idiot posting spam crap-page to me, [Delete] On May 21, 12:52 pm, "jack nicole" <[EMAIL PROTECTED]> wrote: > Free Greeting cards!http://offr.biz/HLFCI276377ZTPYJEK

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

2007-05-21 Thread Ⓙⓐⓚⓔ
Glen, the file is: get http://erikandcolleen.com/erik/projects/jquery/rss/test.xml | hexdump -c 000 < ? x m l v e r s i o n = " 1 010 . 0 " e n c o d i n g = " U T 020 F - 8 " ? > \n < r o o t

[jQuery] Re: Help Test jQuery 1.1.3

2007-05-21 Thread Ⓙⓐⓚⓔ
I think we are supposed to ignore $attrs in IE. I was amazed to see mergenum sneak through! $mergenum should work as well, but should be ignored. in http://jqueryjs.googlecode.com/svn/trunk/plugins/debug/ I happily ignore attributes that start with $ On 5/21/07, Jean-Francois Hovinne <[EMAIL PR

[jQuery] Validation function help request

2007-05-21 Thread Luc Pestille
Hi all, Having tried a few validation plugins, none can do exactly what I want (given the time I have to spend on it), so I'm doing it the manual way, but I can't figure out how to turn my repititions into a function. I have this; //validation for forms $('#admin-quotes').submit( function(){

[jQuery] Problems with load function

2007-05-21 Thread Jean Nascimento
When i´m load a page some events dont work like when i´m using tableFilter the css dont work, but in the page works great when i´m using auto(filter) Hover for close images it´s dont hover, but in the page works =/ Exist some special request to this works?? code from 1 load $("#Listar").click(f

[jQuery] Re: Free Daily Horoscope

2007-05-21 Thread Rodrigo Castilho Galvão Ferreira
SPAM On 5/21/07, jack nicole <[EMAIL PROTECTED]> wrote: Free Daily Horoscope Download Free Daily Horoscope Toolbar! - http://offr.biz/HLFDH276377ZTPYJEK -- Rodrigo Castilho Galvão Ferreira www.rodrigocastilho.com www.rodrigocastilho.com.br www.rodcast.com.br www.rod.cast.nom.br

[jQuery] Custom Events & Return Values

2007-05-21 Thread Jonathan Sharp
Most plugins utilize callbacks for providing integration points for end developers. What are people's thoughts in regards to augmenting the event framework to provide a "reverse callback" approach. This would decouple the callbacks and possibly provide a common interface for multiple plugins which

[jQuery] Free Daily Horoscope

2007-05-21 Thread jack nicole
* Free Daily Horoscope** * Download Free Daily Horoscope Toolbar! - http://offr.biz/HLFDH276377ZTPYJEK

[jQuery] " Microsoft Bill Gates comments on Agloco as the NEXT BIG thing !! "

2007-05-21 Thread jack nicole
*" Microsoft Bill Gates comments on Agloco as the NEXT BIG thing !! "* * * " Microsoft Bill Gates comments on Agloco as the NEXT BIG thing !! " Why AGLOCO? GOOGLE AFRAID ! Hi, If you haven't yet heard about AGLOCO, you need to listen up! This new company, founded by a bunch of Stanford MBA stud

[jQuery] Re: Streaming information from a server

2007-05-21 Thread Ⓙⓐⓚⓔ
I have submitted an enhancement to the ajax function. a partial callback, which gets called as each chunk is received. I should be in jQuery 1.2 On 5/21/07, peter <[EMAIL PROTECTED]> wrote: I have a server application where I start a long running process and want to give the user feedback on

[jQuery] Call or Send SMS to any phone anywhere in the world Free!

2007-05-21 Thread jack nicole
Call or Send SMS to any phone anywhere in the world Free! - http://offr.biz/HLGB7276377ZTPYJEK

[jQuery] Re: show fails in Konqueror with jQuery 1.1.2

2007-05-21 Thread John Resig
Any luck with the latest 1.1.3a build? --John On 5/21/07, Klaus Hartl <[EMAIL PROTECTED]> wrote: The show method completely fails in Konqueror. Does anybody know if this is fixed with later SVN versions? I'm using the official 1.1.2 release. It worked before, so it should be fixable, and e

[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 n

[jQuery] Re: Gathering List innerHTML into a string

2007-05-21 Thread SamCKayak
Thanks. This gives me all I need. Sam

[jQuery] Re: Capture and manipulate scrollwheel event

2007-05-21 Thread Brandon Aaron
Please use the latest from SVN! http://jqueryjs.googlecode.com/svn/trunk/plugins/mousewheel/ I have also tagged previous/current versions: http://jqueryjs.googlecode.com/svn/tags/plugins/mousewheel/ And once jQuery.com comes back up you can access the project page here: http://jquery.com/plugin

[jQuery] Re: Gathering List innerHTML into a string

2007-05-21 Thread Jake McGraw
var str = []; var cnt = 0; $("li").each(function(){str[cnt] = $(this).text();cnt++;}); alert(str.join(";")); this is the first thing that came to my head, probably a better way to do this. - jake On 5/21/07, SamCKayak <[EMAIL PROTECTED]> wrote: I have an unordered list, each list element con

[jQuery] Re: Gathering List innerHTML into a string

2007-05-21 Thread SamCKayak
Here's a simpler problem... If I have a jQuery object which holds an array of elements, e.g., $('li') Is there a way to collapse the innerHTML of that array into a string of concatenated text? Sam

[jQuery] Re: datePicker v2: setStartDate() is not a function?

2007-05-21 Thread Chris W. Parker
On Sunday, May 20, 2007 10:00 AM Kelvin Luck <> said: > Since the date picker methods are added to all jQuery methods I > thought it polite to prefix them to avoid naming collisions with > other plugins. > > Ahh - I've just noticed that there was a typo in the documentation > which is maybe why

[jQuery] Re: Simile Timeline in JQuery?

2007-05-21 Thread {js}sTyler
falcon wrote: > > Has any one done something like Simile's Timeline using jquery? > (http://simile.mit.edu/timeline/) > > It is very nice as it is, I can't help but wonder if it couldn't be > slimplified using jquery. I'm sure gurus here could extend timeline in > interesting ways. > I was

[jQuery] Re: jQuery SVN broken?

2007-05-21 Thread John Resig
You need to use the new jQuery SVN - which requires that you have a GMail username - I just contacted you offlist looking for yours. Let me know and I'll add you in. --John On 5/21/07, Gilles (Webunity) <[EMAIL PROTECTED]> wrote: Is jQuery under DOS attack again? I've been trying to get the l

[jQuery] Re: what's the best way to write this small function

2007-05-21 Thread bingo
hi Richard, Thanks for your help..although I got it working but my approach definetly seems to have bug...here is what is working for me jQuery.fn.customLoad = function(url){ $(this).ajaxStart(function(){ $(this).html(""); }); $(this).load(url); return; } your approach see

[jQuery] Gathering List innerHTML into a string

2007-05-21 Thread SamCKayak
I have an unordered list, each list element contains a radio button, and some text, e.g.: This is some text in list element 1. This is some text in list element 2. There can be from 1 to N list elements in the , what I need to do is concatenate the text into a semicolon delimited string to be pa

[jQuery] Re: The best practice to do this

2007-05-21 Thread Jake McGraw
Jean: Have you looked at some of the WYSIWYG (What You See Is What You Get) JavaScript text editors? TinyMCE is a popular choice to do what you asked and much more. - jake On 5/20/07, Jean Nascimento <[EMAIL PROTECTED]> wrote: How i make a list in a textarea? My ideia is do a script to when

[jQuery] Re: Finding a parent element

2007-05-21 Thread SamCKayak
Thanks. Works great, and it's less filling. Is there no way I can suppress my email address from showing to group members? Sam

  1   2   >