[jQuery] Re: Autocomplete selection Issue

2009-07-10 Thread kranthi
better to ask Dr.Google. http://www.google.co.in/search?q=jquery+autocomplete+plugin the first result points to http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/

[jQuery] Re: $.get ajax call on http page to https on same domain

2009-07-09 Thread kranthi
may be you can provide a link to login page instead of the actual textboxes for login(on those pages).

[jQuery] Re: Array to JSON?

2009-06-21 Thread kranthi
are u looking for http://www.google.co.in/search?q=jquery+json+plugin ?

[jQuery] Re: document.body is null or is not an object

2009-06-08 Thread kranthi
there is one more thing which i forgot to mention earlier... if i encounter an IE specific error the first thing i do is disable all debugging addons in IE, restore all the advanced options to default. open the source code in IE of your colleague(on whose computer it is working fine). open the s

[jQuery] Re: jQuery in OfficeLive

2009-06-06 Thread kranthi
clearly you are not including the jquery.js file(u are including a file but that is empty) web developer firefox addon comes handy in these cases

[jQuery] Re: document.body is null or is not an object

2009-06-06 Thread kranthi
i dont have a faintest idea why this is happening. and i am sure that i am not providing a solution to your problem. but from my experience of debugging JS errors on IE 6 (while it works fine on IE 7) i can tell you that probably you encountered a IE 6 specific JS error before that line of co

[jQuery] Re: jQuery.post -> PHP script -> redirect

2009-06-06 Thread kranthi
$.post worked for me (the redirection is completely accidental and i had to scratch my head for hours to understand why this happened).. i was not able to understand what your problem is, but i noted a few } mismatches in your code. that should have been $(document).ready(function() { $("#su

[jQuery] Re: repeatly fadein/fadeout an object

2009-06-06 Thread kranthi
use setTimeout clearTimeout combo. var timer; function func() { $("a.tm_link").fadeOut("slow").fadeIn("slow"); setTimeout("func()", 5*1000) } onclick clearTimeout(timer);

[jQuery] Re: jquery.ui.cascade null/not an object/undefined, etc etc.

2009-06-06 Thread kranthi
most possible reason is ui.cascade is not defined by the time u call the above line of code. If ui.cascade is defined in an external js file (sorry i never used this plugin) then the file must have been included after calling this line of code. other possibility being... you are using frames/ifra

[jQuery] Re: search nodes in XML

2009-03-08 Thread Kranthi
Hi All, Please help!! Thanks | Kranthi On Mar 5, 4:09 pm, Kranthi wrote: > Hi All, > > I have a employees.xml, which contains employee nodes. > > No in my HTML I should have a text box and a seach button. > > Input value is sth like G% or Go%. I need to display all the m

[jQuery] Re: Ajax get is not working in IE

2009-03-08 Thread Kranthi
Hi All, Please help!! Thanks | Kranthi On Mar 5, 4:00 pm, Kranthi wrote: > Hi All, > > I am new to JQuery. I tried this example from > > http://www.webmonkey.com/tutorial/Easy_XML_Consumption_using_jQuery > > This works fine in Firefox but in IE I am not able to see t

[jQuery] Ajax get is not working in IE

2009-03-05 Thread Kranthi
Hi All, I am new to JQuery. I tried this example from http://www.webmonkey.com/tutorial/Easy_XML_Consumption_using_jQuery This works fine in Firefox but in IE I am not able to see the data. Also, if namespaces are used in XML, how should I handle? Thanks | Kranthi

[jQuery] search nodes in XML

2009-03-05 Thread Kranthi
. Thanks | Kranthi