[jQuery] Re: load script regarding to value of textfield

2009-01-17 Thread jQuery Lover
Use jquery's get() method. More about it here: http://docs.jquery.com/Ajax/jQuery.get Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Tue, Jan 13, 2009 at 2:40 PM, dirk w wrote: > > ides anyone? > > On 12 Jan., 17:43, dirk w wrote: >> thanks a lot for your help! >> is

[jQuery] Re: load script regarding to value of textfield

2009-01-13 Thread dirk w
ides anyone? On 12 Jan., 17:43, dirk w wrote: > thanks a lot for your help! > is it possible to additionally explain me how i can execute this link > through the ajax functions? that would be great! > > thanks in advance > > On 12 Jan., 15:53, "jQuery Lover" wrote: > > > Try this: > > > $('#sea

[jQuery] Re: load script regarding to value of textfield

2009-01-12 Thread dirk w
thanks a lot for your help! is it possible to additionally explain me how i can execute this link through the ajax functions? that would be great! thanks in advance On 12 Jan., 15:53, "jQuery Lover" wrote: > Try this: > > $('#searchButton').click(function(){ >   var url = ' src="[jQuery] Re: load script regarding to value of textfield
Try this: $('#searchButton').click(function(){ var url = 'http://gdata.youtube.com/feeds/api/videos?q=' + $('#searchText').val() + '&alt=json-in-script&callback=showMyVideos&max-results=7&format=5">'; // ajax functions to call $.ajax, $.load, $.get, $.post }); - Read jQuery