[jQuery] Re: App like hangman

2009-08-18 Thread anurag pal
Hi, You can use float for this purpose Like: a bc you can use attr method for getting this. Regards, Anurag Pal On Tue, Aug 18, 2009 at 7:07 PM, Boris Trivic wrote: > > OK thanks for reply. > > Which function enables me to find out which div is puted on which? > Exaple: &g

[jQuery] Re: Manipulate href

2009-08-18 Thread anurag pal
Hi, Basically what I got from this query the initiator don't want to call full links again and again so I have write the which which he can concat and call the location so that it will hit to the particular page. Regards, Anurag Pal On Tue, Aug 18, 2009 at 4:03 PM, Liam Potter wrote: &g

[jQuery] Re: How to refresh a single div with the data using .ajax

2009-08-18 Thread anurag pal
$("#div").html(data); } }); in file some.php if($_REQUEST['ajx'] == 1) { echo 'content will come here.'; } else { echo 'elese print the content like this'; } Regards, Anurag Pal On Tue, Aug 18, 2009 at 3:04 PM, ghost20

[jQuery] Re: ajaxSubmit disabled fields using Forms plugin

2009-08-18 Thread anurag pal
Hi, For this you have to get the value of input then assign it so that you can submit the value of disabled input. $('#ID').attr('txtInputBox'); Regards, Anurag On Sun, Aug 16, 2009 at 7:56 PM, nickfrancesch...@gmail.com < nickfrancesch...@gmail.com> wrote: &

[jQuery] Re: Manipulate href

2009-08-17 Thread anurag pal
Hi, Animals Buildings Cars People $('a').click(function() { var id = $(this).attr('href'); now you can get the string after hash and then redirect it to the desired location. } Regards, Anurag Pal On Tue, Aug 18, 2009 at 12:37 AM, knal wrote: &

[jQuery] Re: App like hangman

2009-08-17 Thread anurag pal
Hi, You can acheive this with Jquery. Regards, Anurag Pal On Tue, Aug 18, 2009 at 12:55 AM, Boris Trivic wrote: > > Hi everyone. > > I need to create one project (some kind of game) and I want to know, > is that possible create with jQuery? > > Page s

[jQuery] Re: manipulate elements with filter

2009-08-17 Thread anurag pal
Click="$(\'#myDiv'+intInt+'\').remove();">Remove< /a>'; $('#dynamicDiv').append(appendText); Regards, Anurag Pal On Tue, Aug 18, 2009 at 2:51 AM, Wolf wrote: > > Hi, > > I need clone a row and update the elements inside of t

[jQuery] Re: manipulate elements with filter

2009-08-17 Thread anurag pal
Click="$(\'#myDiv'+intInt+'\').remove();">Remove< /a>'; $('#dynamicDiv').append(appendText); Regards, Anurag Pal On Tue, Aug 18, 2009 at 2:51 AM, Wolf wrote: > > Hi, > > I need clone a row and update the elements inside of t

[jQuery] Re: how to get back the DOM element as HTML source

2009-08-17 Thread anurag pal
$('#slacker_detail_view').show('blind', options, 1500); } }); }); Regards, Anurag Pal On Tue, Aug 18, 2009 at 7:40 AM, John wrote: > > Hi, > > How do I get back the DOM element as HTML source using jQuery? The html > () method only ret

[jQuery] Re: Malsup FormPlugin - doesn't Ajax!

2009-08-17 Thread anurag pal
Hi, On submit event just check whether the div is displayed none or not. and also at last just put return false. so that it will not submit the form normally. Regards, Anurag Pal On Wed, Aug 12, 2009 at 6:52 PM, Anxiro wrote: > > Hi there! > > I'm using the Form Plugi

[jQuery] Re: Add extra content to the title attribute

2009-08-11 Thread anurag pal
Hi, Use prepend method. Regards, Anurag Pal On Tue, Aug 11, 2009 at 3:15 PM, Paul Collins wrote: > Hi all, > This is hopefully simple. I have a bunch of links with titles, like > TITLE="Facebook" and so on. I am adding JQuery to make the links open in a > new window and

[jQuery] Re: changing url querystring in document.ready onclick

2007-08-23 Thread Anurag
$(window).attr("location", "http://www.google.com";); Cheers Anurag On Aug 23, 3:31 pm, cfdvlpr <[EMAIL PROTECTED]> wrote: > Is there a way to change the url in the browser's address textbox > everytime there is a click or other event?

[jQuery] Re: Selecting an option?

2007-08-23 Thread Anurag
You may also try $("#select [EMAIL PROTECTED]'whatever']") to select by id or if multiple selection was allowed, to get all selected options use $("#select [EMAIL PROTECTED]").doSomethingWithThem(); On Aug 23, 11:18 pm, "Steve Finkelstein" <[EMAIL PROTECTED]> wrote: > Hiya Karl! > > Thanks for

[jQuery] Re: Creating DOM elements on the fly

2007-08-18 Thread Anurag
Thanks for the sample plugin code Sean, This looks like a really neat plugin, I'll have to take care of the indentation though. Can get very messy at 3 levels if not written well. Anurag On Aug 17, 4:19 pm, duma <[EMAIL PROTECTED]> wrote: > Anurag, > > I've writt

[jQuery] Re: Creating DOM elements on the fly

2007-08-16 Thread Anurag
Feel like I hit a jackpot. Thanks! On Aug 17, 1:11 am, "Erik Beeson" <[EMAIL PROTECTED]> wrote: > The jQuery function $() can parse HTML, as can the various DOM > functions (append, prepend, appendTo, etc): > > $('').appendTo('#myForm'); >

[jQuery] Creating DOM elements on the fly

2007-08-16 Thread Anurag
Hi, I am a jQuery beginner. I am working on an application for which I need to create DOM elements on the fly. Previously I was using document.createElement() and document.createTextNode() but that's not concise and looks odd along with jQuery code. So I wrote a tiny 3 line plugin jquery.new.js.