[jQuery] Re: Can jquery do non stop effect?

2009-04-16 Thread Ricardo
It's quite easy: var el = $('#mine'); var animateNonStop = function(){ el.animate({ width:100 }).animate({width: 50 }, function(){ animateNonStop(); }) }; //start it up animateNonStop(); which is similar to var el = $('#mine'); (function(){ el.animate({ width:100

[jQuery] Re: Can jQuery do it again and again?

2008-09-30 Thread thelemondropkid
Thanks for the help guys! I have been looking at some of these ready-made scripts but my rounded corners have a particular design (if you can believe that). Anyway... I have now become obsessed with knowing how to do this. Its like spending the whole day washing your car and then you decide to

[jQuery] Re: Can jQuery do it again and again?

2008-09-29 Thread thelemondropkid
Thanks for the reply. What I would like to do is to reduce the page´s mark-up in general because there are going to be more-or-less 7-8 of these boxes on the home page (excluding the other content. These boxes have rounded corners, hence the empty tr, tl, bl, br divs. What I would like to do is

[jQuery] Re: Can jQuery do it again and again?

2008-09-29 Thread ricardobeat
That is probably a float or clear being (or not being) applied somewhere. If you have floated elements inside a non-floated block margins don't work. Why don't you try one of the existent 'rounded corners' implementations? I haven't had much success with them, but who knows :)

[jQuery] Re: Can jQuery do it again and again?

2008-09-27 Thread Dave Methvin
I would have thought that jQuery would repeat the above process if I created another div with a class of box below the previous one. I can understand that, since it's the way CSS rules work. If you declare a CSS rule p.big { font-size: 200% } then any p with class big will have bigger text no

[jQuery] Re: Can jQuery do it again and again?

2008-09-27 Thread Jonathan
If you used each then it should repeat for each DIV with the class of box on the page. $(document).ready(function(){ $(div.box).each(function() { $(div.box *).wrapAll('div class=inside/div'); $(div.box).append('div class=tl/div'+'div class=tr/div'+'div class=bl/div'+'div

[jQuery] Re: Can jQuery do it again and again?

2008-09-26 Thread MorningZ
LiveQuery would handle that http://brandonaaron.net/docs/livequery/ On Sep 26, 2:17 pm, thelemondropkid [EMAIL PROTECTED] wrote: Thanks to the help I have received on this group, I am making progress. But now that all is working fine, the question beckons: Can jQuery do it all over again?

[jQuery] Re: Can jQuery do it again and again?

2008-09-26 Thread Ariel Flesler
I think this is the most appropiate response for this recurrent question: http://docs.jquery.com/FAQ#Why_do_my_events_stop_working_after_an_Ajax_request.3F -- Ariel Flesler http://flesler.blogspot.com/ On Sep 26, 3:17 pm, thelemondropkid [EMAIL PROTECTED] wrote: Thanks to the help I have

[jQuery] Re: Can jQuery do this?

2008-06-23 Thread parrfolio
Here's a plugin: http://yangshuai.googlepages.com/jquerycopyplugin On Jun 23, 4:30 am, [EMAIL PROTECTED] wrote: On the retailmenot dot com website they have a really cool feature; when you copy one of their voucher codes using your mouse, the retailers url is followed and a graphic appears

[jQuery] Re: Can jQuery do this?

2008-04-19 Thread QuadCom
This site was built using Adobe Flex. When Flex 2.0 was released they had a demo application that was identical (other than the colour scheme). Flex isn't too difficult to learn and probably something that a savvy web developer should have in their toolbox.I use jQuery quite a bit and I will

[jQuery] Re: Can jQuery do this?

2008-04-19 Thread [EMAIL PROTECTED]
On Apr 19, 8:11 pm, sutra [EMAIL PROTECTED] wrote: Tried Flex when it was still in Beta, didn't like it. It was too heavy for my taste. Me, too! Thanks for saying that, sutra ... it sometimes feels like criticism is worse than blasphemy ;) @ QuadCom: 2007 estimates (UK, it might be different

[jQuery] Re: Can jQuery do this?

2008-04-18 Thread [EMAIL PROTECTED]
Well, yes - it's not too hard to fix the size of a drop-down add hover actions to your list elements. I don't know if there's a plugin that does specifically what you're looking for, but this one seems quite versatile: http://jquery.sanchezsalvador.com/jquery/page/jquerycombobox.aspx On Apr

[jQuery] Re: Can jQuery do this?

2008-04-18 Thread Andy Matthews
It looks like all they're doing is to display a DIV when the select a phone dropdown is clicked. That div contains a multi-select box, with associated images. There's nothing built in to jQuery to this completely, but jQuery could make doing this quite simple. -Original Message- From:

[jQuery] Re: Can jQuery do this?

2008-04-18 Thread spinnach
maybe i'm looking at a different page than you, but isn't this page in flash :) ? dennis. Andy Matthews wrote: It looks like all they're doing is to display a DIV when the select a phone dropdown is clicked. That div contains a multi-select box, with associated images. There's nothing

[jQuery] Re: Can jQuery do this?

2008-04-18 Thread millitheKidd
sutra, I think they did that in Flash because if you right-click on the dropdown, or several places on the page for that matter, it gives you that context menu that says Settings... and below that About Adobe Flash Player 9 Also, www.telerik.com has some cool comboboxes that can do a LOT of

[jQuery] Re: Can jQuery do this?

2008-04-18 Thread sutra
Thank you all. I am going to play with the jQuey combobox. sutra

[jQuery] Re: Can JQuery do a slider/button like on yui?

2008-03-03 Thread otherjohn
Ok, I believe I posted too soon. I found what I was looking for, a combination of UI/Slider and Hide function. sorry for the early post On Mar 2, 9:11 pm, otherjohn [EMAIL PROTECTED] wrote: Hi, I would like to make a form input field that has a button attached to the side, in-which when the

[jQuery] Re: Can JQuery do a slider/button like on yui?

2008-03-02 Thread MorningZ
UI slider would do that: http://docs.jquery.com/UI/Slider To be just like the YUI example, you'd hide the slider, show it when one clicks a button, wire the slide event and change the opacity/ button text On Mar 2, 9:11 pm, otherjohn [EMAIL PROTECTED] wrote: Hi, I would like to make a

[jQuery] Re: Can jquery do this?

2007-11-07 Thread George
On a related note, AListApart has a comprehensive article about safer ways to put email addresses on your pages without attracting spam. http://www.alistapart.com/articles/gracefulemailobfuscation George

[jQuery] Re: Can jquery do this?

2007-11-06 Thread Tobias Parent
Thickbox and an iFrame linking to a secure page would do the same thing. If https was the issue, that would do it - in fact, that's pretty much all they're doing - pop up a div, insert an iframe, populate that with the link - yeah, jQuery could front-end that, as long as you've got a server

[jQuery] Re: Can jquery do this?

2007-11-06 Thread Dan G. Switzer, II
Marlyred, This contact form looks really cool and I would love to use something like it on one of my websites. http://www.scriptdojo.com/mycontactstation-secure-contact-form/ Has anyone come up with something like this using jquery? I have been on a quest to find a secure ajax contact form and

[jQuery] Re: Can jquery do this?

2007-11-06 Thread Josh Nathanson
You could do it pretty easily using jqModal or any other of the modal jQuery plugins. There is nothing overly secure about that one, it just uses a captcha like many other contact forms. -- Josh - Original Message - From: marlyred [EMAIL PROTECTED] To: jquery-en@googlegroups.com

[jQuery] Re: Can jquery do this?

2007-11-06 Thread Andy Matthews
Oooh...that's nice. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dan G. Switzer, II Sent: Tuesday, November 06, 2007 1:18 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Can jquery do this? Marlyred, This contact form looks really

[jQuery] Re: Can jquery do this?

2007-11-06 Thread Eric Martin
On Nov 6, 11:01 am, marlyred [EMAIL PROTECTED] wrote: This contact form looks really cool and I would love to use something like it on one of my websites.http://www.scriptdojo.com/mycontactstation-secure-contact-form/ Has anyone come up with something like this using jquery? I have been

[jQuery] Re: Can JQuery do this?

2007-06-04 Thread pd
Might want to try the .empty() method, on the div containing the image, before you load in the next one. http://docs.jquery.com/DOM/Manipulation#empty.28.29 On Jun 4, 4:47 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I'm pretty sure it can since jquery is so sweet, but here's what I am

[jQuery] Re: Can JQuery do this?

2007-06-04 Thread [EMAIL PROTECTED]
Thanks for the tips! Actually I am trying to create a list of pictures, not replace the image. I am thinking something like this but it is failing: $('#files_list').after($.get('generate.cfm')); Must be something small... On Jun 4, 1:03 am, Erik Beeson [EMAIL PROTECTED] wrote: Hard to say

[jQuery] Re: Can JQuery do this?

2007-06-04 Thread Erik Beeson
Your syntax for $.get is wrong. What exactly does generate.cfm return? --Erik On 6/4/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Thanks for the tips! Actually I am trying to create a list of pictures, not replace the image. I am thinking something like this but it is failing:

[jQuery] Re: Can JQuery do this?

2007-06-04 Thread [EMAIL PROTECTED]
it just returns some html (actually just a random image tag img src=something.jpg) What I want to do is take and add whatever image the ajax call returns and add it to the list... maybe it is better to just return the name of the image and then use jquery to actually add the img tag? I think I

[jQuery] Re: Can JQuery do this?

2007-06-04 Thread Erik Beeson
I'm confused. I thought in your first post you said you didn't want it to append, and now it seems like you're saying you do? At any rate, the syntax for get is documented here: http://docs.jquery.com/Ajax#.24.get.28_url.2C_params.2C_callback_.29 In your case, it would be something like this:

[jQuery] Re: Can JQuery do this?

2007-06-04 Thread [EMAIL PROTECTED]
Sorry for the confusion, yes, I do want it to append. Thanks for the help, I'll try some of this stuff. Nite! On Jun 4, 1:57 am, Erik Beeson [EMAIL PROTECTED] wrote: I'm confused. I thought in your first post you said you didn't want it to append, and now it seems like you're saying you do?