[jQuery] Re: How to select one of the many forms i have

2009-04-25 Thread Raja Koduru
i think it should be $("form[name=formb]") not forms... On Sat, Apr 25, 2009 at 1:39 AM, funkyasl wrote: > > Hi all, > I'm a jquery newbie. I've been searching around the web a lot, but > could not find an answer. > > My page has multiple forms (forma, formb, formc, etc). I want to > select one

[jQuery] Re: Error messages is repeating !!

2009-04-17 Thread Raja Koduru
name collision could be a reason like a function and a variable(non function) having same name..and you try to call the variable provide more info on the problem you are facing -- raja koduru On Thu, Apr 16, 2009 at 9:02 PM, akmsharma wrote: > > Hi , > > > Frnds I had encoun

[jQuery] Re: .navButtonAdd Quick Question...

2009-04-17 Thread Raja Koduru
Can you provide more details. Feels like doable just by fiddling with class attribute -- raja koduru On Thu, Apr 16, 2009 at 9:40 PM, briandus wrote: > > Hi there - I'm adding a custom button using the .navButtonAdd > function. I see that there is an option for an image, but I&#x

[jQuery] Re: Setting a newly inserted option as the selected option

2009-04-17 Thread Raja Koduru
$("#refSelectBox option[text^=" + author + "]").attr("selected","selected"); I guess the above is doable. let me know. - raja koduru On Thu, Apr 16, 2009 at 11:16 PM, Nando wrote: > > I'd like set a newly inserted option in a select box as

[jQuery] Re: Adding properties to $.ajax(options)

2009-04-17 Thread Raja Koduru
don't see any.. what is the error you are experiencing? - raja koduru On Fri, Apr 17, 2009 at 5:30 PM, blasto333 wrote: > > $.ajax({ > type: "GET", > url: prefix+url, > success: script_saved, > custom_property : someVar > }); > > Is there anything wrong with this?

[jQuery] Re: [autocomplete] Submit form on click result

2009-04-17 Thread Raja Koduru
Dan, Do you want an ajax post or form submit Can you provide some information on what you are looking for? - raja koduru On Fri, Apr 17, 2009 at 4:44 PM, dajaniel wrote: > > Hi there, > > My jquery is pretty sketchy so I was wondering if anybody knew how to > submit the form

[jQuery] Re: How to select sub element text on clicking the parent element.

2009-04-17 Thread Raja Koduru
* var answer_text = $("ul li", this).text(); alert("answer is " + answer_text); does this help? -raja koduru

[jQuery] Re: can jquery capture these events all in one: user closes browser window/tab, or leaves my domain?

2009-04-17 Thread Raja Koduru
vinda > Try "unload" event on body tag. you even try jquery way. $(window).unload(function { //whatever you want to do }); refer: http://docs.jquery.com/Events/unload#fn -raja koduru

[jQuery] Re: how can I delete all elements: children and parent

2009-04-16 Thread Raja Koduru
> On Apr 16, 6:21 am, Raja Koduru wrote: >> $("#57").parent().empty() >> >> could work. >> check here:http://docs.jquery.com/Manipulation >> >> On Thu, Apr 16, 2009 at 6:01 PM, dziobacz wrote: >> >> > I have: >> >> >

[jQuery] Re: Highlight a table row on radio button click

2009-04-16 Thread Raja Koduru
Nitin, paste some code/snippets here. Will help us to help you. -raja On Thu, Apr 16, 2009 at 5:48 PM, Nitin Gautam wrote: > > I have a table in which each row has radio botton in first td. > I have to make a code so that when user click on radio button that row > get highlighted . > When click

[jQuery] Re: how can I delete all elements: children and parent

2009-04-16 Thread Raja Koduru
$("#57").parent().empty() could work. check here: http://docs.jquery.com/Manipulation On Thu, Apr 16, 2009 at 6:01 PM, dziobacz wrote: > > I have: > > > > bla bla bla > something1 > DELETE > > > > > How can I delete span element with id=57 and also everything inside ?