[jquery-dev] Re: $.jsonp()

2009-03-13 Thread Dave Methvin
> Just a note to let you know I finally released my jsonp plugin for jquery. As of 1.3.x, $.ajax supports jsonp. Can you summarize what this plugin adds? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "jQuery Devel

[jquery-dev] Re: GX animation framework

2009-03-13 Thread Adam Jessop
Just to raise another point, sometime last week I reported a couple of issues with animate to % unit values as follows: “ I Assume the flowing to be correct syntax: $('#myDiv').animate({top:'-25.5%'}) However in the case above, the animate function simply makes the result in px, so

[jquery-dev] Re: $.jsonp()

2009-03-13 Thread aubourg . julian
Am I the only one not to get the message in my mail? Just curious... On 13 mar, 23:04, Julian Aubourg wrote: > Hi all, > > Just a note to let you know I finally released my jsonp plugin for jquery. > It's located here:http://code.google.com/p/jquery-jsonp/ > API documentation can be found > he

[jquery-dev] Re: Iframe and jQuery

2009-03-13 Thread Enye Consultants
Hey Ricardo, Got it :) Trapping clicks on the scroll bar of the parent window :) works wonders! Thanks, Warm Regards, Manoj RS. +91 9220571411 +91 9930963916 On 14-Mar-09, at 3:35 AM, ricardobeat wrote: > > You won't be able to do that if the iframe's content comes from > another do

[jquery-dev] Re: GX animation framework

2009-03-13 Thread Paul Bakaus
The only difference is that it handles properties with multiple values. Everything else can be done with jQuery UI + jQuery. On Fri, Mar 13, 2009 at 3:39 PM, Jörn Zaefferer < joern.zaeffe...@googlemail.com> wrote: > > See http://ajaxian.com/archives/gx-a-new-animation-framework > > Would someone

[jquery-dev] Re: GX animation framework

2009-03-13 Thread Daniel Friesen
color animation support (jquery.color.js can add this) support for handling different types of colors (jQuery UI is working on a color library, I'm planning on helping out to) More easing options: Only one or two in core I believe. A plugin to add extra easing options would be nice. pause and re

[jquery-dev] Re: Iframe and jQuery

2009-03-13 Thread ricardobeat
You won't be able to do that if the iframe's content comes from another domain. What you can do is overlay a DIV or other element on top of the iframe with position:absolute and get the click events from there. Not sure it works in all browsers. cheers, - ricardo On Mar 12, 5:35 pm, ECS wrote:

[jquery-dev] $.jsonp()

2009-03-13 Thread Julian Aubourg
Hi all, Just a note to let you know I finally released my jsonp plugin for jquery. It's located here: http://code.google.com/p/jquery-jsonp/ API documentation can be found here: http://code.google.com/p/jquery-jsonp/wiki/APIDocumentation and some "tips" are described here: http://code.google.com/p

[jquery-dev] Re: jQuery - Development Environments?

2009-03-13 Thread Daniel Friesen
Ubuntu Linux as well. My system actually broke last Friday so I actually reformatted and I upgraded to Intrepid and started experimenting with the 64bit version. I've been using gedit to, though I haven't been using the snippets plugin, I honestly can't get used to snippets in any editor. I ha

[jquery-dev] Re: Odd syntax bug when making a new checkbox element

2009-03-13 Thread ricardobeat
As the error says, the type property can't be changed. You should be using the right syntax from the start, $('') etc. cheers, - ricardo On Mar 12, 1:51 pm, Troop4Christ wrote: > So today I was creating a checkbox element in jQuery when I noticed > that I had a typo in my code..  I had declared

[jquery-dev] Re: JQuery Selector Undocumented .. ?

2009-03-13 Thread rayglaser
Thanks for the help. I will try to get any future questions into the general jQuery group.. On Mar 13, 3:14 pm, "Kelvin Luck" wrote: > That's asp.net code. When run through a server then the rendered HTML will   > contain a value echoed out by the server instead of <%=x.y%> > > In future, questi

[jquery-dev] Re: JQuery Selector Undocumented .. ?

2009-03-13 Thread Kelvin Luck
That's asp.net code. When run through a server then the rendered HTML will contain a value echoed out by the server instead of <%=x.y%> In future, questions like this are better suited for the general jquery support mailing list, you might want to try joining it instead: http://groups.google.

[jquery-dev] JQuery Selector Undocumented .. ?

2009-03-13 Thread rayglaser
I can't find this syntax documented in JQuery and I don't know what it means ? $('#<%=x.y%>').length Help will be appreciated.. . Thanks! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "jQuery Development" group. T

[jquery-dev] Re: Hello World fails?

2009-03-13 Thread rayglaser
Thanks for the help -- It is working now.. On Mar 10, 11:54 am, John Resig wrote: > Try this instead: > > > >   // we will add our javascript code here > $(document).ready(function(){ >   $("a").click(function() { alert("Hello world!"); }); > > }); > > > > --John > > On Tue, Mar 10, 2009 at 1

[jquery-dev] Re: GX animation framework

2009-03-13 Thread Cloudream
jquery core+jquery.color.js+'start' event+pause/resume >From demos, since I can't docs page(OpenDNS gives me a "not load", and I opened the demo pages 2 hours ago) On Fri, Mar 13, 2009 at 10:39 PM, Jörn Zaefferer < joern.zaeffe...@googlemail.com> wrote: > > See http://ajaxian.com/archives/gx-a-ne

[jquery-dev] Re: Update to jquery 1.3.2 from 1.3 : new problems with my code

2009-03-13 Thread Josh Powell
Try: [src$=checked.png] instead of [src=\'images/checked.png\'] I'm trying to get rid of those quotes which may be causing a problem. On Mar 13, 6:40 am, alkariane wrote: > Hi > > I don't know where to post my problem. > So i try here too ^^ > > I've updated to the new version of Jquery 1.3.

[jquery-dev] Problem with JQuery color picker plugin : newbie to JQuery

2009-03-13 Thread Pearl
Hi, I'm a newbie in JQuery. I'm not able to run JQuery sample code in my java application. I'm trying to use a Color Picker - jQuery plugin. I've followed the steps mentioned in the following URL http://www.eyecon.ro/colorpicker/#implement but still it is displaying error message, 'JQuery is n

[jquery-dev] Update to jquery 1.3.2 from 1.3 : new problems with my code

2009-03-13 Thread alkariane
Hi I don't know where to post my problem. So i try here too ^^ I've updated to the new version of Jquery 1.3.2 my code. (i used jquery 1.3). Since i've done that, my program is not working at all. I show you the problem : This instruction doesn't work anymore : $('td.entite'+(numEntite-1)+'.s

[jquery-dev] Re: jQuery - Development Environments?

2009-03-13 Thread Julian Aubourg
I use Zend Studio 5.5. It has built-in svn support, javascript syntax coloring & I can quickly switch to any of the PHP projects I work on at the time. The clear advantage is that I can quickly make a php page to test stuff. I put all of my sources into WAMP's www directory so, all in all, it's qui

[jquery-dev] Re: jQuery - Development Environments?

2009-03-13 Thread David Zhou
In terms of editors, I use vim for everything I do. -- dz On Fri, Mar 13, 2009 at 11:24 AM, chris thatcher wrote: > On windows I recommend 'e' which is a copy of 'textmate' which is my > recommendation for mac.  I bet textmate runs on linux in general but can't > promise that. > > On Fri, Mar

[jquery-dev] Re: jQuery - Development Environments?

2009-03-13 Thread chris thatcher
On windows I recommend 'e' which is a copy of 'textmate' which is my recommendation for mac. I bet textmate runs on linux in general but can't promise that. On Fri, Mar 13, 2009 at 5:26 AM, Mark Gibson wrote: > > Hi Daniel, you don't say what OS you use. This can make a big > difference, especi

[jquery-dev] GX animation framework

2009-03-13 Thread Jörn Zaefferer
See http://ajaxian.com/archives/gx-a-new-animation-framework Would someone with a better understanding of jQuery's and jQuery UI's animation features mind taking a look to see what that framework actually adds that we don't already support out of the box? Eg. relative animations are promoted, I'

[jquery-dev] Re: Iframe and jQuery

2009-03-13 Thread Enye Consultants
thanks :) just new to jquery, been trying to find that :) Thanks, Warm Regards, Manoj RS. +91 9220571411 +91 9930963916 On 13-Mar-09, at 7:04 PM, Julian Aubourg wrote: > scrollTop() & scrollLeft() ? > > 2009/3/13 Enye Consultants > Thanks Julian, > > I finished that one, Now i need help

[jquery-dev] Re: Iframe and jQuery

2009-03-13 Thread Julian Aubourg
scrollTop() & scrollLeft() ? 2009/3/13 Enye Consultants > Thanks Julian, > I finished that one, Now i need help with determining the position of the > scrollbar? any ideas? > Thanks, > Warm Regards, > Manoj RS. > +91 9220571411 > +91 9930963916 > > > > > > > > > > > On 13-Mar-09, at 6:58 PM, Jul

[jquery-dev] Re: Iframe and jQuery

2009-03-13 Thread Enye Consultants
Thanks Julian, I finished that one, Now i need help with determining the position of the scrollbar? any ideas? Thanks, Warm Regards, Manoj RS. +91 9220571411 +91 9930963916 On 13-Mar-09, at 6:58 PM, Julian Aubourg wrote: > Well, I dunno of any way to automatically trap events of an if

[jquery-dev] Re: Iframe and jQuery

2009-03-13 Thread Julian Aubourg
Well, I dunno of any way to automatically trap events of an iframe but you could certainly work something out by overriding the events handlers of the elements in the iframe you're interested with scripting from the parent document. Of course it's IF AND ONLY IF your page and the iframe are of the

[jquery-dev] Re: Get the Specific Row from a Table.

2009-03-13 Thread Adam Jessop
Also I just realised, this is better suited for the general jquery support mailing list, you might want to try joining this mailing group instead: http://groups.google.com/group/jquery-en Adam. -Original Message- From: Adam Jessop Sent: 13 March 2009 12:51 To: 'jquery-dev@googlegroups

[jquery-dev] Re: Get the Specific Row from a Table.

2009-03-13 Thread Adam Jessop
$('#table1 #row1 td') Will match all of the TD objects within the specified row. The selectors work very similar to CSS selectors, I suggest you read the following: http://docs.jquery.com/Selectors Adam. -Original Message- From: jquery-dev@googlegroups.com [mailto:jquery-...@googlegro

[jquery-dev] Re: Get the Specific Row from a Table.

2009-03-13 Thread Julian Aubourg
Well, first of all there can only be one element with a given id in your document tree. So you don't really need to deal with the fact the tr is in a specific table. Since jQuery uses css selectors to retrieve DOM nodes, when facing a problem like this one, think of how you would apply a style to t

AW: [jquery-dev] Iframe and jQuery

2009-03-13 Thread jjackisc2
I think no because if this were possible it will be a security vulnerability Or not? PRIX IT -development -engeneering -consultant -Original Message- From: ECS Date: Thu, 12 Mar 2009 13:35:04 To: jQuery Development Subject: [jquery-dev] Iframe and jQuery This has been asked a millio

[jquery-dev] Detect using jQuery

2009-03-13 Thread Diaz, Chico
I am sure this is a simple question, however, my research and limited jQuery experience can't quite get to the solution. Simply put, I have a vb.net app that has a couple of buttonsSubmit..Clear...Exit... If the user hits I do not get the desired result. I need to 'detect' a in lieu of a

[jquery-dev] Get the Specific Row from a Table.

2009-03-13 Thread Raj
Hi All, I am new to jquery framework, I have a problem related to jquery, Please some one help me out. I have a table and inside a table I have some rows, Table have a specific ID and TR also have an ID. I have to find a TR with specified ID, and all its TD child. For Eg. 1 2 3 1 2 3 I

[jquery-dev] Re: jQuery - Development Environments?

2009-03-13 Thread Mark Gibson
Hi Daniel, you don't say what OS you use. This can make a big difference, especially if you're familiar with shell scripting. I use Ubuntu Linux, have a local apache service running which is configured out of the box for user dirs (ie. http://localhost/~mark - served from /home/mark/public_html).