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

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

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

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

[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:- window.opener.location.hre

[jQuery] Re: jQuery UI Tabs Flash

2009-01-11 Thread Chris
On Jan 11, 12:02 pm, Chris 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 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 wrote: > > Kudos! > > John, the RC1's new selector is causing problems with some of my > existing code base, I've submitted a ticket: > > ht

[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

[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] 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 += $("#myForm)".val

[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: This points to the CSS file style.css in the same directory

[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 : //row and column here and jquery: $("#table1") .tablesorter({widthFixed: true, widgets: ['zebra']}) .tablesorterPager({container: $("#pager")}) It works fine.. how ever if i use : //row and column here a

[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 : On Jan 11, 8:59 pm, goosfancito wrote: > 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 wrote: > > > Do

[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] 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.3rc

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

[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" To: ; Sent: Sunday, January 11, 2009 11:15 PM Subject: [jQuery] jQuery 1.3rc1 Ready Hey Everyone

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

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

[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 ] // remove this line from your code Parte del conten

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

2009-01-11 Thread Varun Khatri
* // remove this line from your code* Parte del contenido Escoger del menu 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... * On Sun, Jan 11, 2009 at 5:18 PM,

[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. A

[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 (text).

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

[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 wrote: > Ddoesn't the animation actually consist of an expandi

[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: but when i use this: Parte del contenido Escoger del menu it no work - Original Message - From: Varun Khatri To: jquery-en@googlegroups.com Sent: Sunday, J

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

2009-01-11 Thread Varun Khatri
u can try like : 2009/1/11 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? > > > > - Origi

[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 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: Su

[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 wrote: > > thank´s but i before do this > > but don´t... > > > > On 11 ene, 19:59, "Varun Khatri" wrote: > > make a .css file like test.css and use it like: > > > > hope this helps!! > > > > On Sun

[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: $.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 wrote: > Hello, > > Whenever I try to pass an object containing array data through jQuery > AJAX only the > last value of the array is sent. Consider this

[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: 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] 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: [ definition css in other file ]

2009-01-11 Thread goosfancito
thank´s but i before do this but don´t... On 11 ene, 19:59, "Varun Khatri" wrote: > make a .css file like test.css and use it like: >     > hope this helps!! > > On Sun, Jan 11, 2009 at 3:56 PM, Lord Gustavo Miguel Angel < > > goosfanc...@gmail.com> wrote: > >  Hello all! > > > I have th

[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 wrote: > Do not use jQuery 1.2.5, use 1.2.6 instead. > > On Jan 11, 2:19 pm, "Mauricio \(Maujor\) Samy Silva" > > wrote: > > The css() jQuery method

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

2009-01-11 Thread Varun Khatri
make a .css file like test.css and use it like: 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 > - > > > > $(document).ready(function(){ > > $("p").click(function(event){ >

[jQuery] [ definition css in other file ]

2009-01-11 Thread Lord Gustavo Miguel Angel
Hello all! I have this .html - $(document).ready(function(){ $("p").click(function(event){ alert("Thanks for visiting!"); }); }); Escoger del menu --- eof 8< and i have this other .css: - #contenidos

[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" wrote: > The css() jQuery method has two sintaxes. > > For one css declaration use: > $('#contenido').css('float', 'left'); > > For multiple css declarations use: > $('#contenido').css ({ >      floa

[jQuery] test

2009-01-11 Thread Lord Gustavo Miguel Angel

[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, sferrag

[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: http://docs.jquery

[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 re-installed

[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 re-installed

[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 re-inst

[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 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 capabilities. > >

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

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

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

[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] i don´t know how add css to my html with jq uery.

2009-01-11 Thread goosfancito
Hello all! I have this .html - $(document).ready(function(){ $("p").click(function(event){ alert("Thanks for visiting!"); }); });

[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 = window.loc

[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: 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] 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 : I have some more div in the leftnav. now i want to drag and drop the DIVs(eg 1,2,3) on the leftnav onto the container div. for which i made the div(icon1,icon2,icon3) draggable and

[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? var url = "http://twitter.com/account/veri

[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 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 change it to use a >

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

[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 wrote: > > Thanks, I'll actually give that a try. > > On Jan 11, 9:46 am, Ariel Flesler 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

[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" Para:

[jQuery] this inside of click event

2009-01-11 Thread bob
Hi, What does this inside of $('.test').click(function() { refer to? $(document).ready(function() { $('.test').click(function() { alert('this = ' + this); }); }); Click Me

[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? http://www.w3.org/1999/xhtml";> offset