[jQuery] Re: jCarousel Lite Plugin Question

2007-10-10 Thread Mandy Singh
Any one? On 10/10/07, Mandy Singh [EMAIL PROTECTED] wrote: Hello, I am little new to jQuery so trying to get a hang of it. I am using the jCarousel Lite plugin for something today and I found it to be brilliant. I only have one problem - so suppose 10 nodes are there in the scrolling

[jQuery] Tag Cloud

2007-09-20 Thread Mandy Singh
Is there an implementation of Tag Cloud css or logic using jquery?

[jQuery] Re: Tag Cloud

2007-09-20 Thread Mandy Singh
All my code is written in jquery so rather than writing something to randomly capiltalize and change font of some stuff inside a div to generate a tag cloud, I thought something like this, if available as jquery plugin which takes a div as argument and randomly does the css stuff, would be great.

[jQuery] Re: Tag Cloud

2007-09-20 Thread Mandy Singh
Oh Really? Sorry, I didn't even know that :) On 9/20/07, Chris W. Parker [EMAIL PROTECTED] wrote: On Thursday, September 20, 2007 8:23 AM Mandy Singh said: All my code is written in jquery so rather than writing something to randomly capiltalize and change font of some stuff inside a div

[jQuery] Re: Tag Cloud

2007-09-20 Thread Mandy Singh
Thank you so much Bruce. This is awesome and exactly what I needed:) -Mandy. On 9/20/07, Andy Matthews [EMAIL PROTECTED] wrote: Ooooh... That's TONS better than the crappy version I just wrote. andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED]

[jQuery] Template caching - Seperating presentation from data

2007-06-08 Thread Mandy Singh
Hello Everyone, My question might not be very jquery specific, but since all the brains are here, I thought of tossing it up for some ideas. I want to separate presentation from my data (on client side). Eg. If I request index.php from the server, it's comprised of - 1) markup (divs, tables,

[jQuery] Re: Template caching - Seperating presentation from data

2007-06-08 Thread Mandy Singh
For people who used php, what I am asking for is a javascript heredoc. On 6/8/07, Mandy Singh [EMAIL PROTECTED] wrote: Hello Everyone, My question might not be very jquery specific, but since all the brains are here, I thought of tossing it up for some ideas. I want to separate presentation

[jQuery] javascript templates

2007-06-07 Thread Mandy Singh
hi, does jquery offer some kind of javascript templates plugin? wat do (if they do) ppl use? since i have a box structure on my page where more or less every box is similar in markup, i would want to create a template of that with javascript vars for unknown content that i later fetch through

[jQuery] Re: History/Remote - jQuery Plugin

2007-05-25 Thread Mandy Singh
when you just come to the page?} On 5/24/07, Klaus Hartl [EMAIL PROTECTED] wrote: Mandy Singh wrote: Anyone on how I can handle this? This is really necessary for this plugin to be useful to me. I am sure people have faced this before, can someone not help? I'm sorry, I'm super busy and I

[jQuery] Re: History/Remote - jQuery Plugin

2007-05-25 Thread Mandy Singh
it happens then it always happens. I saw the link (comment from your blog) for the change. But, its confusing and requires lot of changes. I am hoping you can release a patch soon. Thank you, Mandy. On 5/25/07, Klaus Hartl [EMAIL PROTECTED] wrote: Mandy Singh wrote: Hi Klaus, Thanks for sending

[jQuery] History/Remote - jQuery Plugin

2007-05-24 Thread Mandy Singh
Hello Klaus, Thank you for a wonderful plugin. Apart from the lack of documentation (for beginners who cant figure everything out reading your code :), I am facing the following issues: I am using the plugin from here: http://www.stilbuero.de/jquery/history/ (1) Whenever I click on any link

[jQuery] Re: History/Remote - jQuery Plugin

2007-05-24 Thread Mandy Singh
of _defaultState or something like that being triggered from the code. Thanks, Mandy. On 5/24/07, Benjamin Sterling [EMAIL PROTECTED] wrote: Do you have a url we can look at? I am not sure what this.id is refering to, I think is should be $(this).attr('id'); On 5/24/07, Mandy Singh [EMAIL PROTECTED] wrote

[jQuery] Re: History/Remote - jQuery Plugin

2007-05-24 Thread Mandy Singh
Anyone on how I can handle this? This is really necessary for this plugin to be useful to me. I am sure people have faced this before, can someone not help? On 5/24/07, Mandy Singh [EMAIL PROTECTED] wrote: Ben, The this.id is just referring to the id of the element (anchor tag with class

[jQuery] Form Validate Plugin Question

2007-05-23 Thread Mandy Singh
Hi Jorn, I want to be able to customize the error messages upon form submit. For example, for a particular field my error message should be - Please fill in an appropriate + phoneNum + number. the phoneNum variable could be either mobile, office phone, residence based on a drop down value.

[jQuery] Re: Form Validate Plugin Question

2007-05-23 Thread Mandy Singh
Jorn? On 5/23/07, Mandy Singh [EMAIL PROTECTED] wrote: Okay I tried the following and that seems to work - If I assign the validate class to suppose temp then i can do - if (mobile) { temp.settings.messages['phone'] = mobile; } if (home) { temp.settings.messages['phone'] = home

[jQuery] Re: Form Validation Plugin

2007-05-21 Thread Mandy Singh
Jon, Karl - I am facing a strange issue today. After pushing to a production environment only for FF 2.0.0.3, the validate plugin is not working. It works fine in IE 6 7. It works fine locally as well. I had put the validate code inside $(document).ready but seems like there is a problem

[jQuery] Re: Form Validation Plugin

2007-05-21 Thread Mandy Singh
Anyone? The FF 2.0.3 is becoming a big issue for me now. On 5/21/07, Mandy Singh [EMAIL PROTECTED] wrote: Jon, Karl - I am facing a strange issue today. After pushing to a production environment only for FF 2.0.0.3, the validate plugin is not working. It works fine in IE 6 7. It works

[jQuery] Re: Form Validation Plugin

2007-05-21 Thread Mandy Singh
I have nailed down the issue, but I will open a separate thread to track that as it's a bigger issue. Stay Tune..but please reply. On 5/21/07, Mandy Singh [EMAIL PROTECTED] wrote: Anyone? The FF 2.0.3 is becoming a big issue for me now. On 5/21/07, Mandy Singh [EMAIL PROTECTED] wrote

[jQuery] Problem with $(document).ready in FF 2.0.0.3 when dom is malformed

2007-05-21 Thread Mandy Singh
Hello John et al, While working on the Validation Plugin provided by jquery, I had a very strange issue with $(document).ready() which was not firing my functions in FF 2.0.0.3. Whenever I put a setTimeout call with 500 ms delay inside of it, it worked fine. Which made me think if doconReady is

[jQuery] Re: validate plugin + form plugin + thickbox

2007-05-18 Thread Mandy Singh
It should probably be fixed at the plugin level, ie, if a field is hidden don't try to focus it. was wrking in FF but not in IE (I am on IE 7). On 5/18/07, Mandy Singh [EMAIL PROTECTED] wrote: In the validate(map) using focusInvalid: false, does the trick. On 5/18/07, Mandy Singh [EMAIL

[jQuery] Re: validate plugin + form plugin + thickbox

2007-05-18 Thread Mandy Singh
In the validate(map) using focusInvalid: false, does the trick. On 5/18/07, Mandy Singh [EMAIL PROTECTED] wrote: I too have experienced an issue when a form field is hidden cos its populated by some other script on the page (on some user action) like for eg, selecting something from a custom

[jQuery] Re: validate plugin + form plugin + thickbox

2007-05-17 Thread Mandy Singh
I too have experienced an issue when a form field is hidden cos its populated by some other script on the page (on some user action) like for eg, selecting something from a custom drop down widget populates a hidden field and till then the form validate is put on the hidden field. Once it

[jQuery] Re: Form Validation Plugin

2007-05-16 Thread Mandy Singh
. Any ideas? On 5/16/07, Dan G. Switzer, II [EMAIL PROTECTED] wrote: Exactly! -Dan -- *From:* jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Mandy Singh *Sent:* Tuesday, May 15, 2007 2:06 PM *To:* jquery-en@googlegroups.com *Subject

[jQuery] Re: Form Validation Plugin

2007-05-16 Thread Mandy Singh
an allowed shortcut to leave off the quotes. Karl Rudd On 5/16/07, Mandy Singh [EMAIL PROTECTED] wrote: This script does not work for me when I have a - in my rules $(document).ready(function() { $.validator.setDefaults({ debug: true }); var container = $('div.container

[jQuery] Form Validation Plugin

2007-05-15 Thread Mandy Singh
Does jquery have a simple form validation plugin where I can define the rules for a field and respective error messages and throw all messages out to a common container on top of the form. No ajax just simple client side validations. The one I saw on the wiki is really huge and does all sorts of

[jQuery] Re: Form Validation Plugin

2007-05-15 Thread Mandy Singh
:* jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Mandy Singh *Sent:* 15 May 2007 12:29 *To:* jquery-en@googlegroups.com *Subject:* [jQuery] Form Validation Plugin Does jquery have a simple form validation plugin where I can define the rules for a field and respective