[jQuery] Re: loading message

2009-05-21 Thread Karthikraj
Hi, You can use ajaxStart() and ajaxStop() to do this. $(document).ajaxStart(function() { //call your method to display loading message /(ex:) $ ('#loadingmessage').show(); }); $(document).ajaxStop (function() { //call your method to hide loading message/(ex

[jQuery] Re: remove() method IE 7 ERROR

2009-05-18 Thread Karthikraj
instead of $(data_responce).find('PDialog'); try this $(''+data_responce+'').find('PDialog'); On May 18, 1:42 pm, snakebit wrote: > Hi, > > I have an ajax request which is returning an xml, but when I tray to > remove an element from the xml response I'm receiving the following > error message

[jQuery] Re: How to add a cookie to toggleclass

2009-05-15 Thread Karthikraj
Hi, use createCookie(key, value) method to store value in cookie. to fetch the stored value in cookie use readCookie(key); method. Karthik. On May 14, 11:10 pm, KD wrote: > Hi, I'm using Wordpress and each post will have a table.  I'm using > the following script to allow users to highlight a

[jQuery] Re: A better way of writing this code?

2009-05-15 Thread Karthikraj
But CSS :hover will not work in IE6. So better use script On May 15, 9:26 am, RobG wrote: > On May 15, 11:35 am, Calvin wrote: > > >   Hi, > > >   I was able to get this script to work and was wondering if there was > > a better/proper/more efficient way of writing it. Here is the script: >

[jQuery] Re: Fade Content In and Out

2009-04-06 Thread Karthikraj
Hi, use fadeIn() fadeOut() methods to do this... Note : use jquery-1.3.1 On Apr 7, 5:00 am, PF wrote: > Hi everyone: > > I am looking for a way using jQuery to fade my content in and out when > the user clicks a button.  For example: > > The user loads the page, the content fades in. > The use

[jQuery] Re: Enable a disabled button by id

2009-03-31 Thread Karthikraj
On Mar 30, 7:44 pm, Thierry wrote: > I can disable button with specific id with the following code: > > jQuery("#click_me:button").attr("disabled", "true"); > > If I want to re-enable the button, the following doesn't work: > > jQuery("#click_me:button").attr("disabled", "false"); > > Does anyo