[jQuery] Re: jeditable autocomplete - time to revisit?

2009-01-11 Thread Mika Tuupola
On Dec 28, 2008, at 3:23 AM, Diogo Merovingio wrote: I still with problems. When the onblur submit the form, the autocomplete didn't finish yet. The consequence is that when I select something from autocomplete and press tab the string submitted was only part of what I wrote (ex.: I write

[jQuery] Re: IMAP PHP is possible or not !!!!

2009-01-11 Thread jQuery Lover
The main question is: What is taking up the time? Is it php script that connects through imap and retrieves mail list or is it the mail list download time? Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Sun, Jan 11, 2009 at 10:46 AM, bharani kumar

[jQuery] Re: Can I get the contents from respose by ajax

2009-01-11 Thread David .Wu
I tried all your suggestion, but got some weired result. ajax.html !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http:// www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd html xmlns=http://www.w3.org/1999/xhtml; head meta http-equiv=Content-Type content=text/html; charset=utf-8 /

[jQuery] Re: .load() callback

2009-01-11 Thread BlueStunt
This still doesn't work, I've stripped it down to this: $(document).click(function(e) { var $linkClicked = $(e.target); if( $linkClicked.is(a) ) { alert(Hi); return false; } }); but nothing registers, the return false doesn't work and neither is

[jQuery] Re: Jquery Calling Servlet

2009-01-11 Thread RUQUIA TABASSUM
How do i direct my servlet to a new window using JQuery i am not able to understand as i am new to JQuery, can you please suggest me how do i do this i tried doing window.opener.location.href= $.post(../reports/BillIDPropIDExcelExport,{csvstring:

[jQuery] Re: Can I get the contents from respose by ajax

2009-01-11 Thread Balazs Endresz
As jQuery parses this html the output will contain three elements: title, meta, and the div instead of the single html. So .find() won't work because it will search in the descendant elements, but filter will return '#a' because it's an element of the current jQuery object. $('html/html')

[jQuery] Problem with creating dynamic html...

2009-01-11 Thread Nedim
This is in html (by default) input type=hidden id=brojacgrupa value=1 / div id=grupe div id=grupa1 class=grupa input type = hidden id=grupa1 value=1/ div class=dodatni-sastojcispan class=naslov- posKolicina/span span

[jQuery] Mootools user needs to learn jQuery quick!

2009-01-11 Thread gbot
Hi, I've been a fan of Mootools for quite a while now, but I've got a project coming up very soon that must be done in jQuery - can anyone point me to any tutorials or ideally a cheat sheet that can help me learn the differences between Mootools and jQuery? Any info/tuts/blog posts on switching

[jQuery] Panorama Viewer

2009-01-11 Thread Mikeytown2
First made one using canvas, but ExplorerCanvas didn't like the it. https://developer.mozilla.org/en/Canvas_tutorial/Basic_animations http://excanvas.sourceforge.net/ Source Image http://commons.wikimedia.org/wiki/File:Capitan_Meadows,_Yosemite_National_Park.jpg So next I did it using jQuery,

[jQuery] Problem with creating dynamic html...

2009-01-11 Thread Nedim
Hello everyone. I have a problem with jQuery. This is (by default) in HTML file: input type=hidden id=brojacgrupa value=1 / div id=grupe div id=grupa1 class=grupa input type = hidden id=grupa1 value=1/ div class=dodatni-sastojcispan class=naslov-

[jQuery] Re: .load() callback

2009-01-11 Thread Mike Alsup
This still doesn't work, I've stripped it down to this: $(document).click(function(e)     {       var $linkClicked = $(e.target);       if( $linkClicked.is(a) )       {         alert(Hi);         return false;       }     }); but nothing registers, the return false doesn't work and

[jQuery] Re: Problem with creating dynamic html...

2009-01-11 Thread Mike Alsup
This is in html (by default)       input type=hidden id=brojacgrupa value=1 /       div id=grupe          div id=grupa1 class=grupa              input type = hidden id=grupa1 value=1/                div class=dodatni-sastojcispan class=naslov- posKolicina/span span

Re: Fw: [jQuery] Re: IMAP PHP is possible or not !!!!

2009-01-11 Thread bharani kumar
So , need to increase the speed, i thing my english is very poor, On Sun, Jan 11, 2009 at 7:30 PM, bharani kumar bharanikumariyer...@gmail.com wrote: http://www.bharanikumariyerphp.site88.netretrieves mail list, it will take around 40 sec for retrieve mail list, so need to increase the

[jQuery] Re: Panorama Viewer

2009-01-11 Thread Mike Alsup
First made one using canvas, but ExplorerCanvas didn't like the it.https://developer.mozilla.org/en/Canvas_tutorial/Basic_animationshttp://excanvas.sourceforge.net/ Source Imagehttp://commons.wikimedia.org/wiki/File:Capitan_Meadows,_Yosemite_Nati... So next I did it using jQuery, here is

[jQuery] Re: Mootools user needs to learn jQuery quick!

2009-01-11 Thread Mike Alsup
From what I can see jQuery looks a little bit more straightforward to code, although it seems to me that Mootools does more out of the box - a lot of stuff I can write in Mootools in a few lines of code (using the core) seems to require additional classes or plug ins with jQuery - is that a

[jQuery] Re: z-index issue

2009-01-11 Thread godzilla74
Yes, it was solved! Thanks for the help everyone. I had to use a callback in the hoverout animate() function, so the z- index would actually be taken care of AFTER the animation ran: $('span.resize').hover(function(){ //testing //$('#test').html(iWidth

[jQuery] Re: How can I add a TRUE custom event or modify existing jQuery functions?

2009-01-11 Thread Ariel Flesler
I just made a plugin to do EXACTLY what you're asking for. It's not formally released yet so there's no documentation. If you want, you can use it. http://test.flesler.com/jquery.broadcast/ Note that it requires jQuery 1.3. That means you need to use the version on trunk or any of the recently

[jQuery] Re: Panorama Viewer

2009-01-11 Thread donb
I simply saved the html to my hard drive and opened it. What I don't get is the 2044. 2x1024 = 2048. What's significant about the number used? And where is the 'ugly IE hack?' On Jan 11, 9:03 am, Mike Alsup mal...@gmail.com wrote: First made one using canvas, but ExplorerCanvas didn't

[jQuery] Re: How can I add a TRUE custom event or modify existing jQuery functions?

2009-01-11 Thread kape
Thanks, I'll actually give that a try. On Jan 11, 9:46 am, Ariel Flesler afles...@gmail.com wrote: I just made a plugin to do EXACTLY what you're asking for. It's not formally released yet so there's no documentation. If you want, you can use it. http://test.flesler.com/jquery.broadcast/

[jQuery] offset question

2009-01-11 Thread David .Wu
Hi the offset function will find the first matched element and show the offset but in this case, the ul offset should be 0 to div#demo, but in firefox it's 8, and in IE is 10 why is that? !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http://

[jQuery] this inside of click event

2009-01-11 Thread bob
Hi, What does this inside of $('.test').click(function() { refer to? script type=text/javascript $(document).ready(function() { $('.test').click(function() { alert('this = ' + this); }); }); /script a href=# class=testClick Me/a

[jQuery] Re: this inside of click event

2009-01-11 Thread Mauricio (Maujor) Samy Silva
Try inspect this running the following script: $('.test').click(function() { alert('this node name = ' + this.nodeName); alert('this nome type = ' + this.nodeType); alert('this node text = ' + $(this).text()); }); Hope that help Maurício -Mensagem Original- De: bob

[jQuery] Re: How can I add a TRUE custom event or modify existing jQuery functions?

2009-01-11 Thread Ariel Flesler
Nice, let me know how it goes. On Sun, Jan 11, 2009 at 2:05 PM, kape erlend.so...@gmail.com wrote: Thanks, I'll actually give that a try. On Jan 11, 9:46 am, Ariel Flesler afles...@gmail.com wrote: I just made a plugin to do EXACTLY what you're asking for. It's not formally released yet so

[jQuery] Re: Mootools user needs to learn jQuery quick!

2009-01-11 Thread Rey Bango
Hi Gbot, Welcome to the jQuery community. I don't think it's necessary to debate the merits of the two libs as both provide excellent capabilities. What is important, if you want to be successful, is that you clear your mind of the Mootools way while you're trying to learn jQuery. To be

[jQuery] Re: Mixed HTML and Javascript and inject into #banners causes problems

2009-01-11 Thread ChristophN
Hi there. Yes it does use (plenty) of document.write. What DOM manipulation do you mean, any idea? Christoph On Jan 9, 4:38 pm, Ricardo Tomasi ricardob...@gmail.com wrote: If the script being loaded from banners.php uses document.write you're out of luck, it's not going to work. You have to

[jQuery] i can't modify the header with beforeSend

2009-01-11 Thread ximiff
I'm trying to auto login to twitter api with adding a Authorization header. When i run my code below , i found that the request headers still not modified with firebug, and the browser pop a window to input username and password. How can I handle that? code var url =

[jQuery] Some help with drag and drop in JQUERY

2009-01-11 Thread vinit
i am making a website i which the page is divided into two vertical parts. the left part is a div . eg : BODY DIV id=container witdh=100% DIV id=leftnav float=left width=30% div id=1 height=20px weight=20px /div div id=2 height=20px weight=20px /div div id=3 height=20px weight=20px /div /DIV

[jQuery] Re: i can't modify the header with beforeSend

2009-01-11 Thread Karl Rudd
The cross domain JSONP type request doesn't use the XMLHttpRequest object/system. Indeed it couldn't because XMLHttpRequest can't be done across domains (at least not yet, standards are being formulated). What happens is that a script tag with the requested URL is inserted in the document, so no

[jQuery] Re: IE8.

2009-01-11 Thread Thomas Kahn
simonferra...@gmail.com wrote: Our friends at Microsoft have a lot of work to do until their new born browser IE8 (Still in Beta 2) actually works the way it should. It seems that there is a major event triggering issue. Lots of jQuery core functionalities depends of events.

[jQuery] Re: .load() callback

2009-01-11 Thread Ricardo Tomasi
You are defining your watchLinks function outside document.ready, so it's not available. it should look like this (pay attention to the closing brackets/parenthesis, you had extra ones at the end): $(document).ready(function(){ / CHECK URL var pageHash =

[jQuery] i don´t know how add css to my html with jq uery.

2009-01-11 Thread goosfancito
Hello all! I have this .html - script language=JavaScript type=text/javascript src=jvs/ jquery-1.2.5.js /script script type=text/javascript $(document).ready(function(){ $(p).click(function(event){

[jQuery] append() not working on dynamically-created nodes in IE

2009-01-11 Thread Joe White
I'm troubleshooting a problem where my text wasn't showing up in IE. I've narrowed the problem down to creating a DOM node dynamically (with $(html)) and then passing it to append(). In FireFox, append will add the node as expected; but when passed a dynamically-created node in IE, it does

[jQuery] jQuery UI Tabs Flash

2009-01-11 Thread Chris
I searched the archives, but I couldn't find an answer. For some reason the tabs, when initialized flashes, three times. Any idea why? http://www.chris-gwen.com/

[jQuery] Re: append() not working on dynamically-created nodes in IE

2009-01-11 Thread Karl Rudd
Try closing the tag, ie: $('#myDiv').append($('h2/h2')); Actually the second $() shouldn't be needed: $('#myDiv').append('h2/h2'); Karl Rudd On Mon, Jan 12, 2009 at 7:35 AM, Joe White vulcanvik...@gmail.com wrote: I'm troubleshooting a problem where my text wasn't showing up in IE. I've

[jQuery] Re: Mootools user needs to learn jQuery quick!

2009-01-11 Thread gbot
Thanks very much for all your comments and links. I'm looking forward to getting stuck into jQuery! On Jan 12, 7:36 am, Rey Bango r...@iambright.com wrote: Hi Gbot, Welcome to the jQuery community. I don't think it's necessary to debate the merits of the two libs as both provide excellent

[jQuery] Re: IE8.

2009-01-11 Thread Nikola
I'd like to start testing in IE8b2 as well but I can't seem to get it installed. Has anyone else had difficulties getting it up and running? I'm running Windows XP sp3. I installed IE8, rebooted but IE8 wouldn't start up. I checked the version to confirm it was installed and it was. I

[jQuery] Re: IE8.

2009-01-11 Thread Nikola
I'd like to start testing in IE8b2 as well but I can't seem to get it working. Has anyone else had difficulties with it? My PC is running Windows XP sp3. I installed IE8, rebooted, but IE8 wouldn't start up. I checked the version to confirm it was actually installed and it was. I

[jQuery] Re: IE8.

2009-01-11 Thread Nikola
I'd like to start testing in IE8b2 as well but I can't seem to get it working. Has anyone else had difficulties with it? My PC is running Windows XP sp3. I installed IE8, rebooted, but IE8 wouldn't start up. I checked the version to confirm it was actually installed and it was. I

[jQuery] Re: i don´t know how add css to my html wit h jquery.

2009-01-11 Thread Mauricio (Maujor) Samy Silva
The css() jQuery method has two sintaxes. For one css declaration use: $('#contenido').css('float', 'left'); For multiple css declarations use: $('#contenido').css ({ float: 'left', width: '480px', min-height: '250px', ..., backgroundColor: '#fff' }); See:

[jQuery] Re: IE8.

2009-01-11 Thread Ariel Flesler
I noticed, yesterday, that on IE8, scrollTo doesn't work on overflowed elements. http://demos.flesler.com/jquery/scrollTo/ I even tried $('#elem').attr({ scrollLeft:500, scrollTop:500 }) but that didn't work as well. -- Ariel Flesler http://flesler.blogspot.com On Dec 18 2008, 1:50 pm,

[jQuery] test

2009-01-11 Thread Lord Gustavo Miguel Angel

[jQuery] Re: i don´t know how add css to my html wit h jquery.

2009-01-11 Thread Kean
Do not use jQuery 1.2.5, use 1.2.6 instead. On Jan 11, 2:19 pm, Mauricio \(Maujor\) Samy Silva css.mau...@gmail.com wrote: The css() jQuery method has two sintaxes. For one css declaration use: $('#contenido').css('float', 'left'); For multiple css declarations use: $('#contenido').css ({

[jQuery] [ definition css in other file ]

2009-01-11 Thread Lord Gustavo Miguel Angel
Hello all! I have this .html - script language=JavaScript type=text/javascript src=jvs/ jquery-1.2.5.js /script script type=text/javascript $(document).ready(function(){ $(p).click(function(event){ alert(Thanks for visiting!); }); }); /script /head body div

[jQuery] Re: [ definition css in other file ]

2009-01-11 Thread Varun Khatri
make a .css file like test.css and use it like: link href=test.css rel=stylesheet type=text/css / hope this helps!! On Sun, Jan 11, 2009 at 3:56 PM, Lord Gustavo Miguel Angel goosfanc...@gmail.com wrote: Hello all! I have this .html - script language=JavaScript

[jQuery] Re: i don´t know how add css to my html wit h jquery.

2009-01-11 Thread goosfancito
Thank´s Mauricio but... i like that are declaration stay in other file, not in file (for example) index.html... how i do? On 11 ene, 19:52, Kean shenan...@gmail.com wrote: Do not use jQuery 1.2.5, use 1.2.6 instead. On Jan 11, 2:19 pm, Mauricio \(Maujor\) Samy Silva css.mau...@gmail.com

[jQuery] Re: [ definition css in other file ]

2009-01-11 Thread goosfancito
thank´s but i before do this link href=test.css rel=stylesheet type=text/css / but don´t... On 11 ene, 19:59, Varun Khatri khatri.vk1...@gmail.com wrote: make a .css file like test.css and use it like:     link href=test.css rel=stylesheet type=text/css / hope this helps!! On Sun, Jan

[jQuery] Ok... one more try....the resize event just doesn't what to play ball

2009-01-11 Thread jeremyBass
hello I ve been working on this issues for a month now.. so the issue is that the resize event is just locking up... and will not work if the page loads to fast... I have to slow the script down so it doesn't bind up is seems... here it is... $(window).bind('resize', function(){

[jQuery] Re: jQuery UI tabs widget problem

2009-01-11 Thread Jesse
I would like to confirm that the array methods for disabling tabs does not work. I have 1.6rc4 installed. 5 Tabs 4 of which I need disabled on page load jQuery('#product').tabs(); jQuery('#product').tabs(disabled.tabs, [1,2,3,4]); does not work.. neither does

[jQuery] resize unstable

2009-01-11 Thread jeremyBass
hello I ve been working on this issues for a month now.. so the issue is that the resize event is just locking up... and will not work if the page loads to fast... I have to slow the script down so it doesn't bind up is seems... here it is... $(window).bind('resize', function(){

[jQuery] the resize event just doesn't what to play ball

2009-01-11 Thread jeremyBass
hello I ve been working on this issues for a month now.. so the issue is that the resize event is just locking up... and will not work if the page loads to fast... I have to slow the script down so it doesn't bind up is seems... here it is... $(window).bind('resize', function(){

[jQuery] Re: $.post not working with object arrays

2009-01-11 Thread Jolyon Terwilliger
change test.arr = new Array(1, 2, 3); to test[arr[]] = new Array(1, 2, 3); awkward, but should work.. On Dec 23 2008, 10:52 am, drimsun stephane.cho...@gmail.com wrote: Hello, Whenever I try to pass an object containing array data through jQuery AJAX only the last value of the array is

[jQuery] resize event just doesn't what to play ball

2009-01-11 Thread jeremyBass
hello I ve been working on this issues for a month now.. so the issue is that the resize event is just locking up... and will not work if the page loads to fast... I have to slow the script down so it doesn't bind up is seems... here it is... $(window).bind('resize', function(){

[jQuery] Re: [ definition css in other file ]

2009-01-11 Thread Varun Khatri
i dint get you ? tell what is the problem? On Sun, Jan 11, 2009 at 3:05 PM, goosfancito goosfanc...@gmail.com wrote: thank´s but i before do this link href=test.css rel=stylesheet type=text/css / but don´t... On 11 ene, 19:59, Varun Khatri khatri.vk1...@gmail.com wrote: make a .css

[jQuery] Re: [ definition css in other file ]

2009-01-11 Thread Lord Gustavo Miguel Angel
ok. i trade explaint problem. i have 2 file: index.html( i send file with name html.txt) style.css( i send file with name style.txt) my problem: how i do to use index.html and style.css and jQuery? - Original Message - From: Varun Khatri To: jquery-en@googlegroups.com Sent:

[jQuery] Saving HTML as an image...

2009-01-11 Thread mumbojumbo
Hello, I'm working on an application that will use jquery to make charts and graphs and I want to allow the user to save the html as an image. Can this be done? This really isn't a jquery question per se, but I would like to know if jquery could do it/ or if it can be done at all. MJ

[jQuery] Re: [ definition css in other file ]

2009-01-11 Thread Varun Khatri
u can try like : script type=text/javascript src=Scripts/jQuery.js/script link href=test.css rel=stylesheet type=text/css / 2009/1/11 Lord Gustavo Miguel Angel goosfanc...@gmail.com ok. i trade explaint problem. i have 2 file: index.html( i send file with name html.txt) style.css( i

[jQuery] Re: [ definition css in other file ]

2009-01-11 Thread Lord Gustavo Miguel Angel
no work sorry i write in spanish. but in file that i send you can see this lines: link href=css/estilos.css rel=stylesheet type=text/css / but when i use this: body /div div id=contenidos h3Parte del contenido/h3 pEscoger del menu/p /div /body it no work

[jQuery] Re: Toggle child elements

2009-01-11 Thread Wacko Jacko
Hi donb, It sounds like you know much more than I do. I am still quite new to jQuery. Can you point me in the right direction to have these elements slide in (down)? Thanks in advance for your help. Jackson On Jan 8, 2:01 pm, donb falconwatc...@comcast.net wrote: Ddoesn't the animation

[jQuery] Re: Panorama Viewer

2009-01-11 Thread Mikeytown2
by overlapping 4px I never get any white space after 10 min of looping. The IE hack is 2 fold. I need a wrapper div, and I also have to use position:absolute;. In FF you can use position: relative; and no wrapper, much cleaner. This is my first Jquery Script, so if there is any advice/tips for

[jQuery] How to move an image to another div??

2009-01-11 Thread webmas...@terradon.nl
Hi all, i cant find a way to move an image from one div to another. I only found UI but that all works with mouseclicks?? What already works: when i click on an image, i use the taconite plugin, for processing game results (great plugin) and returning xml data so i can update some content

[jQuery] Re: Saving HTML as an image...

2009-01-11 Thread Scott Sauyet
mumbojumbo wrote: I'm working on an application that will use jquery to make charts and graphs and I want to allow the user to save the html as an image. Can this be done? This really isn't a jquery question per se, but I would like to know if jquery could do it/ or if it can be done at all.

[jQuery] Re: [ definition css in other file ]

2009-01-11 Thread Varun Khatri
body * /div // remove this line from your code* div id=contenidos h3Parte del contenido/h3 pEscoger del menu/p /div check your file is in css folder as you are writing : *css/estilos.css* *estilos.css should be in folder name css... I tried your code and it works fine...

[jQuery] Re: [ definition css in other file ]

2009-01-11 Thread Lord Gustavo Miguel Angel
no problem. don´t work thank´s - Original Message - From: Varun Khatri To: jquery-en@googlegroups.com Sent: Sunday, January 11, 2009 9:58 PM Subject: [jQuery] Re: [ definition css in other file ] body /div // remove this line from your code div

[jQuery] Re: jQuery UI tabs widget problem

2009-01-11 Thread Klaus Hartl
Again, everything works as expected for me. Could you possibly put up a test case? Also, could you try and update to latest version from the repository? It may be related to a bug that occured when initializing a div instead of a ul element. BTW, in your first example you need to use the data

[jQuery] jQuery 1.3rc1 Ready

2009-01-11 Thread John Resig
Hey Everyone - jQuery 1.3rc1 is ready. This means that 1.3 is effectively finished barring a horrible bug between now and the final release on Wednesday (the 14th). You can grab the source here: http://code.jquery.com/jquery-1.3rc1.js Please let me know, personally, if you find some bad new

[jQuery] john. please example css

2009-01-11 Thread Lord Gustavo Miguel Angel
John, please publish full example of the use one fine .html and other .css both with jquery. Thank´s. Please Not use .css inside .html file. - Original Message - From: John Resig jere...@gmail.com To: jquery-en@googlegroups.com; jquery-...@googlegroups.com Sent: Sunday, January 11,

[jQuery] Re: Saving HTML as an image...

2009-01-11 Thread brian
You'll certainly have to look at something server-side. I suggest you create a form with hidden fields that jQuery populates (I'm assuming that the data is user-generated) and which is then sent to an application to create the chart/graph. If you use PHP, you coulduse the PEAR Image_Graph

[jQuery] jQuery 1.3rc1 Ready

2009-01-11 Thread Mike Alsup
Changing subject line back to original. Hey Everyone - jQuery 1.3rc1 is ready. This means that 1.3 is effectively finished barring a horrible bug between now and the final release on Wednesday (the 14th). You can grab the source here: http://code.jquery.com/jquery-1.3rc1.js

[jQuery] Re: jQuery 1.3rc1 Ready

2009-01-11 Thread Scott Sauyet
John Resig wrote: jQuery 1.3rc1 is ready. This means that 1.3 is effectively finished barring a horrible bug between now and the final release on Wednesday That's great news. For those of us who haven't been following recent development, are there any release notes available? Cheers,

[jQuery] Re: i don´t know how add css to my html wit h jquery.

2009-01-11 Thread Ricardo Tomasi
An external CSS file has nothing to do with any script, just use a link inside head: link href=estilos.css rel=stylesheet / On Jan 11, 8:59 pm, goosfancito goosfanc...@gmail.com wrote: Thank´s Mauricio but... i like that are declaration stay in other file, not in file (for example)

[jQuery] Jquery tablesorter problem

2009-01-11 Thread varun
Hi I was trying to use jquery table sorter plugins: when ever I use it like : table id=table1 cellspacing=1 class=tablesorter //row and column here /table and jquery: $(#table1) .tablesorter({widthFixed: true, widgets: ['zebra']}) .tablesorterPager({container: $(#pager)}) It works

[jQuery] Re: [ definition css in other file ]

2009-01-11 Thread Scott Sauyet
Lord Gustavo Miguel Angel wrote: my question. How i do to used this .css file in my .html with jQuery¿ You can see a working sample here: http://scott.sauyet.com/issues/2009-01-11a/ (Choose test.html.) The key is this: link rel=stylesheet type=text/css href=style.css/ This

[jQuery] JQuery Validation - call validate(options) multiple times to append options to current validator [validate]

2009-01-11 Thread phil
I'm wondering if it's possible to call the validate method multiple times to append more options to the validator. I haven't tried it, but it seems like it will overwrite previous options. Example psuedo code: var formValidator = $(#myForm).validate(options1); formValidator +=

[jQuery] Re: jQuery 1.3rc1 Ready

2009-01-11 Thread Canglan
Kudos! John, the RC1's new selector is causing problems with some of my existing code base, I've submitted a ticket: http://dev.jquery.com/ticket/3826 Thanks!

[jQuery] Re: jQuery 1.3rc1 Ready

2009-01-11 Thread John Resig
jQuery 1.3rc1 is ready. This means that 1.3 is effectively finished barring a horrible bug between now and the final release on Wednesday That's great news. For those of us who haven't been following recent development, are there any release notes available? Nope - but there will be a full

[jQuery] Re: jQuery 1.3rc1 Ready

2009-01-11 Thread John Resig
Do you have an example? It's kind of hard to figure out what's going wrong with only a line to look at. --John On Sun, Jan 11, 2009 at 11:07 PM, Canglan cang...@gmail.com wrote: Kudos! John, the RC1's new selector is causing problems with some of my existing code base, I've submitted a

[jQuery] Re: jQuery UI Tabs Flash

2009-01-11 Thread Chris
On Jan 11, 12:02 pm, Chris cpot...@siolon.com wrote: I searched the archives, but I couldn't find an answer. For some reason the tabs, when initialized flashes, three times.  Any idea why? http://www.chris-gwen.com/ No ideas?

[jQuery] Re: Jquery Calling Servlet

2009-01-11 Thread RUQUIA TABASSUM
Here i need to use AJAX because the servlet called is appended with input parameters that contains 1 to 5 charectars and when i directly call the servlet instead of making ajax call the url is not completely formed and the servlet is not invoked. direct call:-

[jQuery] Re: jQuery 1.3rc1 Ready

2009-01-11 Thread Nikola
I was using 1.3b2 with UI1.6rc4 on one particular project I'm working on. I threw 1.3rc1 in to try it out and for some reason my tabs are all over the place. It will really take me some time to put a minimal case together but I'll try to narrow this down a bit tomorrow. Are there any

[jQuery] Re: jQuery 1.3rc1 Ready

2009-01-11 Thread Nikola
I was using 1.3b2 with UI1.6rc4 on one particular project I'm working on. I threw 1.3rc1 in to try it out and for some reason my tabs are all over the place. It will really take me some time to put a minimal case together but I'll try to narrow this down a bit tomorrow. Are there any

[jQuery] Re: jQuery 1.3rc1 Ready

2009-01-11 Thread Nikola
Well, that was really strange. The problem was somewhere in the validate plug-in, I'm still working on this and not exactly sure what happened... but, all is well.

[jQuery] Re: jQuery 1.3rc1 Ready

2009-01-11 Thread duck!
You mentioned the validate plugin: last I looked it was still using xpath style '@' for attribute selectors ( e.g. $(inp...@name=some]), which has been removed from 1.3 in favour of plain [name=some]. Could be your problem? jQuery.Nikola wrote: Well, that was really strange. The

[jQuery] Re: Simulate BackSpace key

2009-01-11 Thread ggerri
Hi I've done something similar with the Tab. Maybe that helps. You'll need the FIELDS Plugin for that: $(#PG1_L02-4-5) .bind('keydown',function(e) { switch(e.keyCode) { case 9: // tab