[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 wrote: > Hi Jack, > >

[jQuery] Re: Ajax not working in Firefox

2009-09-08 Thread Anoop kumar V
gt;>>>>>>>> Accept */* >>>>>>>>>> Accept-Language en-us,en;q=0.5 >>>>>>>>>> Accept-Encoding gzip,deflate >>>>>>>>>> Accept-Charset ISO-8859-1,utf-8;q=0.7,*;q=0.7 >>>>>>>>>> Keep-Alive 300 >>>>>>>>>> Connection keep-alive >>>>>>>>>> Content-Typeapplication/x-www-form-urlencoded; >>>>>>>>>> charset=UTF-8 >>>>>>>>>> X-Requested-WithXMLHttpRequest >>>>>>>>>> Content-Length 24 >>>>>>>>>> Pragma no-cache >>>>>>>>>> Cache-Control no-cache >>>> >>>>>>>>>> Post >>>>>>>>>> F10 Yes >>>>>>>>>> F11 No >>>> >>>>>>>>>> Any ideas why Firefox 3 would be having issues with my ajax >>>>>>>>>> request? >>>> >>>>>>>>>> On Sep 3, 3:34 pm, "emmecin...@gmail.com" >>>>>>>>>> >>>>>>>>>> wrote: >>>> >>>>>>>>>>> You **must** install and use something like Firebug or >>>>>>>>>>> TamperData to >>>>>>>>>>> see what your browser is sending to the server, and what >>>>>>>>>>> your server >>>>>>>>>>> is sending back. Just because the HTML response content >>>>>>>>>>> looks like an >>>>>>>>>>> error does not necessarily mean that the HTTP response >>>>>>>>>>> contained an >>>>>>>>>>> error code (for example). >>>> >>>>>>>>>>> On Sep 3, 1:29 pm, RPrager wrote: >>>> >>>>>>>>>>>> I just tested this code using FF2 and it works just fine. >>>>>>>>>>>> This appears >>>>>>>>>>>> to be a FF3 problem only. I'm currently using Firefox >>>>>>>>>>>> version 3.5.2. >>>>>>>>>>>> Any ideas? >>>> >>>>>>>>>>>> On Sep 3, 10:31 am, RPrager wrote: >>>> >>>>>>>>>>>>> Thanks for the idea but adding (dataType: 'text') did not >>>>>>>>>>>>> produce a >>>>>>>>>>>>> different result. >>>> >>>>>>>>>>>>> On Sep 3, 9:32 am, 月讀 wrote: >>>> >>>>>>>>>>>>>> My english is not well. >>>> >>>>>>>>>>>>>> $.ajax({ >>>>>>>>>>>>>> type: "POST", >>>>>>>>>>>>>> url: "newcoleng", >>>>>>>>>>>>>> data: "F10=Yes&F11=No", >>>>>>>>>>>>>> dataType: 'text', >>>>>>>>>>>>>> success: function(data){ >>>>>>>>>>>>>> alert( "Data Saved: " + data ); >>>>>>>>>>>>>> } >>>> >>>>>>>>>>>>>> }); >>>> >>>>>>>>>>>>>> Try it. >>>> >>>>>> -- >>>>>> Turtle, turtle, on the ground, >>>>>> Pink and shiny, turn around. >> >> >> >> -- >> Turtle, turtle, on the ground, >> Pink and shiny, turn around. > > -- Thanks, Anoop

[jQuery] Re: Clickable ?

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 bubbli

[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 wrote: > there are lots of plugins to do this > > look for carousel or scroll in a plugin search > > jCarousel and s

[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. 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
> validator is not defined > validator.resetForm(); \n > > > Thanks > Tomas > -- Thanks, Anoop

[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 wrote: > > 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
Hi Jack, Yes, if you could do something along those lines, it would be most helpful. Would putting a progress bar like gmail be a better option or should it be just a loading gifeither would work for me for now. Thanks, Anoop On Fri, Aug 14, 2009 at 2:08 PM, Jack Killpatrick wrote

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

2009-08-12 Thread Anoop kumar V
But thank you for this wonderful plugin it is really well made, I only wish IE would catch up soon ;-) Thanks, Anoop

[jQuery] Re: toggle and logic confusion

2009-08-12 Thread Anoop kumar V
then I may be able to help you further.. Thanks, Anoop On Wed, Aug 12, 2009 at 7:06 AM, Richard D. Worth wrote: > > On Wed, Aug 12, 2009 at 5:40 AM, Bruce MacKay wrote: > >> >> Yes, you are right - what I described was like an accordion, but I left >> out the descrip

[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 wrote: > 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 :

[jQuery] Re: validations

2009-08-03 Thread Anoop kumar V
nd wanted to use jauery validations for > textbox controls in my project. > how can i...can u please guide me using asp.net with c# we are doing > web applications > > Ex: textbox accepts only alphabets and should not be empty > -- Thanks, Anoop

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

2009-07-30 Thread Anoop kumar V
d (even though it seems useless because the id deleted is still shown on the page, again - goes away after the manual F5). I have just tried a lot of things using .load in the success, .ajax, .post etc etc, but I have the same issue. Thanks, Anoop On Fri, Jul 31, 2009 at 1:20 AM, rupak mandal

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

2009-07-30 Thread Anoop kumar V
dont mind using ajax for this - but would love if I could get both options - ajax and non-ajax. Thanks, Anoop

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

2009-07-30 Thread Anoop kumar V
ent).ready(function() { > $('#myform').validate({ > rules: { > score_1 : {required: true} > }); > }) > > My input's > > > > > > > The validate is not trigged in this way. > > Can you help me on this? > > Thank you. > > Leon > -- Thanks, Anoop

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

2009-07-27 Thread Anoop kumar V
the issue - otherwise I will just open an issue and hope the people more familiar with the form plugin take notice and resolve it. Thanks again, Anoop On Mon, Jul 27, 2009 at 12:12 PM, jackmcleod wrote: > > I had 1 problem with ajaxSubmit and switched to using $.post and it > solved my

[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/collaps

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

2009-07-25 Thread anoop
" + xhr.statustext).show("fast"); } It could be that I am doing something wrong, but that does not explain the inconsistent behavior between the 2 browsers. It was this block of text that I had to remove to make my forms work even after a refresh. Thanks, Anoop O

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

2009-07-25 Thread anoop
" + xhr.statustext).show("fast"); } It could be that I am doing something wrong, but that does not explain the inconsistent behavior between the 2 browsers. It was this block of text that I had to remove to make my forms work even after a refresh. Thanks, Anoop O

[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 wrote: > > no,

[jQuery] Test - please ignore

2009-07-24 Thread anoop
Test - please ignore

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

2009-07-24 Thread Anoop kumar V
somebody please help a bit? I am not able to understand / explain why this happens - I do not have a lot of javascript / jquery code, just the 2 functions... Should I call reset for all forms after I submit? If so can someone please show / hint at how that can be achieved? Thanks, Anoop On Fri, Jul

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

2009-07-23 Thread Anoop kumar V
0; } .form-class { margin-top: 5px; width: 30em; text-align: left; padding: 0em .1em; } .form-class label { float: left; width: 5em; font: normal small-caps bold 1.25em/100% "Lucida Grande",sans-serif; } ***/CSS* Thanks for any help, Anoop

[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 wrote: > > The code you provided is just the check when the field has the blurred > event c

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

2009-07-15 Thread Anoop kumar V
/ best practice? Also I am not sure if my pop up will stay during all this validation, or will it just close and I will have to figure out a way to display the pop-up again? Finally should the error / validation message be associated to a visible field only so that it is visible and adjacent to that

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

2009-07-14 Thread Anoop kumar V
please provide some tips on how best to achieve this? By the way I am using the bassistance plugin, my application is a legacy app written in jsp & is database intensive; And so far I have not considered using ajaxform etc.. Thanks, Anoop

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

2009-07-14 Thread Anoop kumar V
please let me know if I am talking nonsense. Thanks, Anoop On Tue, Jul 14, 2009 at 4:55 PM, Jörn Zaefferer < joern.zaeffe...@googlemail.com> wrote: > You shouldn't initialize the validation inside a click-event handler - > that way it tries to init it on every click. > >

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

2009-07-14 Thread Anoop kumar V
a field, the cursor (to type) does not stay inside. Thanks, Anoop Thanks, Anoop On Tue, Jul 14, 2009 at 12:02 PM, anoop wrote: > > Hi, > > I am really new to jquery and have been using it for the past few > weeks. I have an issue that I am stuck in, would be grateful if

[jQuery] Re: (validate) Variable form and validation active fields

2009-07-14 Thread anoop
I think the HTML page will become invalid if more than a single field has the same id. Can you change the id="dynamount" to maybe class="dynamount"? Otherwise only the first field will be assigned the id "dynamount". Anoop On Jul 14, 10:34 am, snitch wrote: > H

[jQuery] Multiple forms / validation error message & focus

2009-07-14 Thread anoop
Hi, I am really new to jquery and have been using it for the past few weeks. I have an issue that I am stuck in, would be grateful if someone could assist a little. I use java / jsp for a small application of mine. The application displays all regions as links on a page and for each region, I sh