[jQuery] Re: When to use LiveQuery plugin

2009-01-21 Thread Rics
Karl, There is a bug somewhere between JQuery 1.3 and LiveQuery Plugin. I just can't put LiveQuery Plugin to work with JQuery 1.3. It's odd. I will use previous JQuery version until they implement all the events. Untill there I need to use LiveQuery... =((( On 19 jan, 14:43, Karl Swedberg wro

[jQuery] Re: Call a function just before the window close

2008-02-23 Thread rics
Can't put it to work... :( I found an example, but it doesn't work too. Maybe because I'm in firefox, on linux.. don't know. I'm trying the .unload() jquery event now... On Feb 22, 6:27 pm, MorningZ <[EMAIL PROTECTED]> wrote: > there is an "onbeforeunload" event you can use > > http://www.go

[jQuery] Call a function just before the window close

2008-02-22 Thread rics
Hello folks, Probably this is a dumb question, but I'm not a javascript developer (yet), so be patience with me! :P How can I call a function just before the window close? When the user click the close button of the window I want to execute some tasks. Can I do that?

[jQuery] A problem I can't figure out alone

2008-02-18 Thread rics
I don't even know where the problem is exactly. Please, if you could show me some way to go... I want to check the checkbox that have the specifc ID. Here is my code: if (sgconfs.default_domain != '') { $ ("#"+sgconfs.default_domain).attr("checked", "checked"); } Ok. The sgconfs is an object.

[jQuery] Re: Using Literal Objects in Javascript with JQuery

2008-02-07 Thread rics
gt; }; > > Counter.prototype.init = function(obj) { > this.container.val(this.start); > > }; > > var c = new Counter(); > c.init(); > > certainly the object literal method looks a bit cleaner. It is > possible to create multiple instances? Any other advantages? > >

[jQuery] Using Literal Objects in Javascript with JQuery

2008-02-06 Thread rics
/arquivos/videotutoriais/jsobjetoliteral/ Good luck! rics

[jQuery] Re: How to set up a callback on a function I've made?

2008-01-08 Thread rics
}); $("#searchBar > button").click(function() { $.get("ajax/list.php", function(data){ $("#ajaxContent").html(data); }); }); On Jan 8, 1:38 pm, rics <[EMAIL PROTECTED]> wrote: > Hello pe

[jQuery] How to set up a callback on a function I've made?

2008-01-08 Thread rics
Hello people, How can I force some code to run only when the execution of other function finish? Look my code: function loading() { $("#ajaxContent").slideToggle("normal", function() { $("#ajaxLoader").toggle(); }); }

[jQuery] Re: Loading animation when waiting JQuery.post() to return

2008-01-08 Thread rics
I will try both. I want to do it from zero at least once, to learn... :D Thanks! rics On Jan 7, 8:15 pm, "Josh Nathanson" <[EMAIL PROTECTED]> wrote: > > I think what you might be after are ajaxStart and ajaxStop: > > >http://docs.jquery.com/Ajax/ajaxStart#callback

[jQuery] Loading animation when waiting JQuery.post() to return

2008-01-07 Thread rics
Hello, How can I set an animation to play when the page is waiting for a return from ajax function such as .get() or .post()??? Didn't find examples in docs. Thanks, rics

[jQuery] Re: Using JQuery with PHP Frameworks

2008-01-07 Thread rics
t; <[EMAIL PROTECTED]> wrote: > rics wrote: > > I wish to start usign some PHP framework soon and was > > wondering wich one works better with JQuery. I will use Zend > > Framework or CakePHP. > > Not decided yet. > > Are you looking for a framework for creati

[jQuery] Using JQuery with PHP Frameworks

2008-01-07 Thread rics
Hello, I wish to start usign some PHP framework soon and was wondering wich one works better with JQuery. I will use Zend Framework or CakePHP. Not decided yet. Do you have any experience with one of them? How can I use JQuery with them? Any article or tutorial I can read? Thanks, rics

[jQuery] Re: jQuery.ScrollTo 1.3 released

2008-01-05 Thread rics
Great job!!! It works fine on Linux, usign Firefox 2.0.010. rics On Jan 3, 6:08 pm, Ariel Flesler <[EMAIL PROTECTED]> wrote: > There, now it shows an example of code when a link is clicked. > I'd appreciate it, if some people could try it on different browser > ve

[jQuery] Re: Beginner help with highlight effect

2007-12-28 Thread rics
because this works great: > $("#admperm").show().css({backgroundColor: > '#ff0'}).animate({backgroundColor: '#fff'}, 1000); > > On Dec 27, 11:24 am, rics <[EMAIL PROTECTED]> wrote: > > > I can't put it to work without the setTimeOut(). Th

[jQuery] Re: Beginner help with highlight effect

2007-12-27 Thread rics
ndColor: '#fff'}, 1000); This did'nt work. Don't know why... The code only works inside setTimeOut() function. I will read your article. I'm loving learning JQuery. It's simply SUPER FUN to develop with it. =) Thanks, rics On Dec 26, 1:54 pm, Karl Swedberg <[EMA

[jQuery] Re: Beginner help with highlight effect

2007-12-26 Thread rics
>From there: "Only properties that take numeric values are supported (e.g. backgroundColor is not supported by animate())." But thanks anyway... Your tip helped me with a lot of other issues! :D Thanks!!! rics On Dec 24, 10:43 pm, "Glen Lipka" <[EMAIL PROTECTED

[jQuery] Re: Beginner help with highlight effect

2007-12-26 Thread rics
nd not very good with the english language! :D Merry Christmas, rics On Dec 25, 1:31 pm, Karl Swedberg <[EMAIL PROTECTED]> wrote: > On Dec 24, 2007, at 11:35 AM, rics wrote: > > > > > > > Hello, > > > I'm a PHP developer, but all this javascript t

[jQuery] Re: Need input on best approach to this type of menu feature

2007-12-26 Thread rics
I think that with some show() or slide() functions you can make something like that. Make divs or the expandable area and hide them all. Then you can show() and/or slide() them in mouseover, or something like that. This is a beginning... rics On Dec 26, 12:20 am, "Rick Faircloth&quo

[jQuery] Beginner help with highlight effect

2007-12-24 Thread rics
me? I wish to click a checkbox and then "flash" a div using yellow background. I think I have to paint the div background with yellow and then fade to transparent again. Am I thinking correct? How can I do that? Thanks, rics, from Brazil.