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,
>
>
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 wrote:
> I was having ajax problems with a certain combination of Firefox 3.5.x
> and Firebug. Ca
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
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 scrollable are 2 excel
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 firebug console it
> di
You need to specify the class as cancel for the back button. It is as
simple as that.
On 8/19/09, Tokasa 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 corectly the rese
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 the form is su
d the load time) that I decided 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
> t
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
ve
Where are you capturing the click event?
You may want to do something like this:
$(function(){
$('').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, then
I may be able to help you
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 :)
>
>
> On Mon, Aug 10, 2009 at 11
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 wrote:
>
> Hi,
> I am verymuch new to jquery and wanted
wrote:
> Hi anoop I think you can store the required data in session.
>
>
> On Fri, Jul 31, 2009 at 5:19 AM, Anoop kumar V wrote:
>
>> I have a menu, on which is a delete link. The URL of the link is quite
>> plain: http://mysite.com?delete=true&id=123
>>
I have a menu, on which is a delete link. The URL of the link is quite
plain: http://mysite.com?delete=true&id=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: http://mysite.
I think the validation plugin depends only on the name and not the id.
On 7/29/09, Leon 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. I've looked
+
> > 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 for
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
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, I will acknow
24, 2009 at 2:09 AM, Anoop kumar V wrote:
> 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
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 detai
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 called. Are you also doing the chec
field?
Any help is very much appreciated.
Thanks,
Anoop
On Wed, Jul 15, 2009 at 12:49 AM, Anoop kumar V wrote:
> 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
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 please
Why not just select the form and call validate, eg.
>
> $(".main-title form").validate({ ... });
>
> Jörn
>
> On Tue, Jul 14, 2009 at 10:42 PM, Anoop kumar V
> wrote:
> > Hi All,
> >
> > I think I have been able to solve the issue of the validation err
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 //.
$(func
25 matches
Mail list logo