[jQuery] Re: Listmenu - tips for making it faster in IE

2009-10-15 Thread Anoop kumar V
Hi Jack, Are you still planning on implementing this feature of putting a message / progress bar for IE (and firefox to keep it consistent)? Or have you come up with any better ways of handling this. Thanks, Anoop On Mon, Aug 17, 2009 at 11:41 PM, Anoop kumar V anoopkum...@gmail.comwrote: Hi

[jQuery] Re: Ajax not working in Firefox

2009-09-08 Thread Anoop kumar V
Also try it from a different machine with FF3 but no firebug installed. I have noticed on occasion, that firebug hangs up and does not allow any ajax requests to go through. On 9/8/09, Karl Swedberg k...@englishrules.com wrote: I was having ajax problems with a certain combination of Firefox

[jQuery] Re: Clickable div?

2009-09-04 Thread Anoop kumar V
Can you try this: $(#logo).click(function(){ $.cookie('startCookie', 'default').load('http://www.mylink.com '); }); You do not have to put the a there as logo being the parent will receive the click even as part of the event bubbling. Thanks, Anoop On Fri, Sep 4, 2009 at

[jQuery] Re: slide one div out left while sliding one in right

2009-08-29 Thread Anoop kumar V
You can also try to use animate which is part of jquery core. Look up some examples on the jquery website, there are quite simple. -Anoop On 8/29/09, Charlie charlie...@gmail.com wrote: there are lots of plugins to do this look for carousel or scroll in a plugin search jCarousel and

[jQuery] Re: Jquery Validation plugin doesn't working on ASP NET MVC

2009-08-27 Thread Anoop kumar V
You need to reverse the order of sourcing the javascript files. Put the jquery 1.3.2.js file before the validate.js. -Anoop On 8/27/09, Edgar Méndez. edgar9...@gmail.com wrote: I'm trying to use the Jquery Validation plugin on aspnet mvc fframework but it doesn't work, when I open the

[jQuery] Re: [validate] - resetForm not working.

2009-08-19 Thread Anoop kumar V
You need to specify the class as cancel for the back button. It is as simple as that. On 8/19/09, Tokasa toka...@gmail.com wrote: Hi, anybody have experience with this validation plugin? http://jquery.bassistance.de/validate/demo/errorcontainer-demo.html I need to know how to specify

[jQuery] Re: form.bind(submit) firing only once in firefox 3.5 ubuntu

2009-08-18 Thread Anoop kumar V
Are you using any ajax after you submit the form the first time? Thanks, Anoop On Tue, Aug 18, 2009 at 10:07 AM, Dmitriy Likhten dlikh...@gmail.comwrote: I have tested this on jQuery 1.2.6 and 1.3.2... After binding a form.submit event and returning false due to some logic, the second time

[jQuery] Re: Listmenu - tips for making it faster in IE

2009-08-17 Thread Anoop kumar V
not to include that in the plugin. I'm on vacation right now, but early next week could take a look at a workaround you might be able to use to show a message and then hide it after IE is done chugging way. Let me know and I'll put some thought into it. Thanks, Jack Anoop kumar V wrote: I am using

[jQuery] Re: toggle and logic confusion

2009-08-12 Thread Anoop kumar V
Where are you capturing the click event? You may want to do something like this: $(function(){ $('parent of div#1, div#2 div#3').click(function(event){ $('.hideme').hide(); $(this).find('a.showme').show() } } If you post your actual html and your click event code if you have one,

[jQuery] Listmenu - tips for making it faster in IE

2009-08-12 Thread Anoop kumar V
I am using listmenu and it works fantastically well... except only on firefox. On IE 7 it is quite slow, the lag is very noticeable - the menu appears after about 6-7 seconds and the counts come much later after about 8-10 seconds. Since this is an intranet app, I need to ensure that IE 7 works

[jQuery] Re: Get the ID of a button that is clicked

2009-08-10 Thread Anoop kumar V
Would e.target.id also work in this case? Thanks, Anoop On Mon, Aug 10, 2009 at 3:00 PM, Charlie Griefer charlie.grie...@gmail.comwrote: Aye, but I've been reprimanded (on this list) for suggesting that (and incurring the 'overhead' of a jQuery object) when 'this' works just fine :) On

[jQuery] Re: validations

2009-08-03 Thread Anoop kumar V
You can try and use the bassistance form validation plugin. For server side validation I think you need the (malsup) form plugin as well. You can google for the exact links or go through the search on jquery.com. On 8/3/09, pramothireddy swapnadot...@gmail.com wrote: Hi, I am verymuch new

[jQuery] Re: Basic questions about jQuery validation plugin.

2009-07-30 Thread Anoop kumar V
I think the validation plugin depends only on the name and not the id. On 7/29/09, Leon leon...@gmail.com wrote: Hello, I have a form with a set of input fields. I am going to validate the form with jQuery Validation. The field has the value of its ID different from the value of its name.

[jQuery] Is it possible to hide the destination URL of a link?

2009-07-30 Thread Anoop kumar V
I have a menu, on which is a delete link. The URL of the link is quite plain: http://mysite.com?delete=trueid=123 (quite obvious I think that the request is to delete the id=123) I wish to hide the destination URL in the browser from the user - so that it shows a harmless url like:

[jQuery] Re: Is it possible to hide the destination URL of a link?

2009-07-30 Thread Anoop kumar V
the required data in session. On Fri, Jul 31, 2009 at 5:19 AM, Anoop kumar V anoopkum...@gmail.comwrote: I have a menu, on which is a delete link. The URL of the link is quite plain: http://mysite.com?delete=trueid=123 (quite obvious I think that the request is to delete the id=123) I wish

[jQuery] Re: Form values getting unsynchronized after ajaxsubmit [validate]

2009-07-27 Thread Anoop kumar V
. It was this block of text that I had to remove to make my forms work even after a refresh. Thanks, Anoop On Jul 24, 11:01 am, Anoop kumar V anoopkum...@gmail.com wrote: Attached an html - that shows my situation... In the page - clicking on any region opens the pop-up form

[jQuery] Re: Looking for expand/collapse tree directory navigation

2009-07-26 Thread Anoop kumar V
Would this work for you? http://jquery.bassistance.de/treeview/demo/ sample 0 seems to fit your requirements. Thanks, Anoop On Sat, Jul 25, 2009 at 4:10 PM, Magnificent imightbewrongbutidontthin...@gmail.com wrote: Hello, I'm looking for an expanding/collapsing tree directory type of

[jQuery] Form values getting unsynchronized after ajaxsubmit [validate]

2009-07-24 Thread Anoop kumar V
Hi All, I have a very weird issue that I have been trying to resolve for over a week now with no success in sight. I use jsp to generate a page of regional information. The regions are displayed as clickable blocks. On clicking each block a pop-up form opens up with the corresponding region

[jQuery] Re: Form values getting unsynchronized after ajaxsubmit [validate]

2009-07-24 Thread Anoop kumar V
24, 2009 at 2:09 AM, Anoop kumar V anoopkum...@gmail.comwrote: Hi All, I have a very weird issue that I have been trying to resolve for over a week now with no success in sight. I use jsp to generate a page of regional information. The regions are displayed as clickable blocks. On clicking

[jQuery] Re: Test - please ignore

2009-07-24 Thread Anoop kumar V
Thanks - but if you really should, then please acknowledge my actual posts: http://groups.google.com/group/jquery-en/browse_thread/thread/130b4df144c2e0b9 I would much appreciate any help you could provide.. :-) -Anoop On Fri, Jul 24, 2009 at 12:26 PM, Liam Potter

[jQuery] Re: Username availability check and form validation

2009-07-20 Thread Anoop kumar V
Also - maybe you have a typo - should the line not be: else if(data=='yes') instead of else if(data='yes') Thanks, Anoop On Mon, Jul 20, 2009 at 3:59 PM, James james.gp@gmail.com wrote: The code you provided is just the check when the field has the blurred event called. Are you

[jQuery] Re: Best practice for integrating server-side validation (jsp) with jquery validation (specially bassistance)

2009-07-15 Thread Anoop kumar V
:49 AM, Anoop kumar V anoopkum...@gmail.comwrote: Hi All, I was wondering if there is a link or pointers for best practices while integrating client side validation errors with server side validation. I read on a forum that this requires the server side to return a json, but could not find

[jQuery] Re: Multiple forms / validation error message focus

2009-07-14 Thread Anoop kumar V
Hi All, I think I have been able to solve the issue of the validation error messages not appearing on the correct form. If anyone else encounters the same problem, below is the fix / solution for it. (I had to use the event and firebug console). Changed lines are marked with a trailing //.

[jQuery] Re: Multiple forms / validation error message focus

2009-07-14 Thread Anoop kumar V
The reason I think $(.main-title form) will not work for my case is because my form is structured like the following: form class=cbnav method=post action=user/region.jsp div class =main-titleKansas City (KC)/div div class=details /div /form So the form is actually a parent of the

[jQuery] Best practice for integrating server-side validation (jsp) with jquery validation (specially bassistance)

2009-07-14 Thread Anoop kumar V
Hi All, I was wondering if there is a link or pointers for best practices while integrating client side validation errors with server side validation. I read on a forum that this requires the server side to return a json, but could not find many pointers or details about this. Can somebody