jQuery Plugins » complete https://jqueryplugins.info jQuery plugins, tutorials and resources Fri, 28 Oct 2011 05:14:59 +0000 en hourly 1 http://wordpress.org/?v=3.2.1 Auto Complete JQuery with ASP.Net https://jqueryplugins.info/2011/10/auto-complete-jquery-with-asp-net/ https://jqueryplugins.info/2011/10/auto-complete-jquery-with-asp-net/#comments Fri, 21 Oct 2011 11:13:19 +0000 Admin https://jqueryplugins.info/2011/10/auto-complete-jquery-with-asp-net/ Post link: Auto Complete JQuery with ASP.Net

Can you please help me on how to get the value of the selected item in autocomplete drop down? I am able to populate the data and i want to...

]]>
Post link: Auto Complete JQuery with ASP.Net

Can you please help me on how to get the value of the selected item in autocomplete drop down? I am able to populate the data and i want to get the value of the selected item alone. Below is the snippet i am using.

 $  (document).ready(function () {
$  ("#txtTest").autocomplete({
     source: function (request, response) {
         $  .ajax({
             type: "POST",
             contentType: "application/json; charset=utf-8",
             url: "Webservice.asmx/GetNames",
             data: "{'prefix':'" + request.term + "'}",
             dataType: "json",
             async: true,
             success: function (data){
                response($  .map(data, function(item)
                { return item ; }));
            },
            error: function (result) {
               alert("Due to unexpected errors we were unable to load data");
            }
         });
     },
     minLength:2
 });
 });

Thanks

newest questions tagged jquery – Stack Overflow

]]>
https://jqueryplugins.info/2011/10/auto-complete-jquery-with-asp-net/feed/ 0
Example of jQueryUI sortable drag drop auto complete https://jqueryplugins.info/2011/08/example-of-jqueryui-sortable-drag-drop-auto-complete/ https://jqueryplugins.info/2011/08/example-of-jqueryui-sortable-drag-drop-auto-complete/#comments Thu, 25 Aug 2011 09:05:17 +0000 Admin https://jqueryplugins.info/2011/08/example-of-jqueryui-sortable-drag-drop-auto-complete/ Post link: Example of jQueryUI sortable drag drop auto complete

An example of software I wrote that uses jQuery UI to drag/drop/sort between a list of elements as well as autocomplete searching Video Rating: 0 / 5

]]>
Post link: Example of jQueryUI sortable drag drop auto complete

An example of software I wrote that uses jQuery UI to drag/drop/sort between a list of elements as well as autocomplete searching
Video Rating: 0 / 5

]]>
https://jqueryplugins.info/2011/08/example-of-jqueryui-sortable-drag-drop-auto-complete/feed/ 0
Universidade XTI – jQuery – 34 – Exemplo jQueryUI – Auto Complete + WebService + Ajax + JSON https://jqueryplugins.info/2011/08/universidade-xti-jquery-34-exemplo-jqueryui-auto-complete-webservice-ajax-json/ https://jqueryplugins.info/2011/08/universidade-xti-jquery-34-exemplo-jqueryui-auto-complete-webservice-ajax-json/#comments Tue, 23 Aug 2011 01:04:26 +0000 Admin https://jqueryplugins.info/2011/08/universidade-xti-jquery-34-exemplo-jqueryui-auto-complete-webservice-ajax-json/ Post link: Universidade XTI – jQuery – 34 – Exemplo jQueryUI – Auto Complete + WebService + Ajax + JSON

Curso de jQuery disponibilizado pela Universidade XTI www.universidadexti.com.br para capacitar profissionais para trabalhar com Tecnologia da Informação na XTI Brasil www.xti.com.br; Faça os cursos de (X)HTML, CSS e JAVASCRIPT da...

]]>
Post link: Universidade XTI – jQuery – 34 – Exemplo jQueryUI – Auto Complete + WebService + Ajax + JSON

Curso de jQuery disponibilizado pela Universidade XTI www.universidadexti.com.br para capacitar profissionais para trabalhar com Tecnologia da Informação na XTI Brasil www.xti.com.br; Faça os cursos de (X)HTML, CSS e JAVASCRIPT da Universidade XTI antes de começar este curso. Após se preparar nos cursos abertos venha fazer parte do melhor time de TI do Mundo – [email protected];
Video Rating: 5 / 5

]]>
https://jqueryplugins.info/2011/08/universidade-xti-jquery-34-exemplo-jqueryui-auto-complete-webservice-ajax-json/feed/ 0
jquery auto complete from scratch part 2 https://jqueryplugins.info/2011/08/jquery-auto-complete-from-scratch-part-2/ https://jqueryplugins.info/2011/08/jquery-auto-complete-from-scratch-part-2/#comments Thu, 18 Aug 2011 08:04:06 +0000 Admin https://jqueryplugins.info/2011/08/jquery-auto-complete-from-scratch-part-2/ Post link: jquery auto complete from scratch part 2

This video will discuss how to create your own auto complete using jquery, We will also look into jquery ajax. Video Rating: 5 / 5

]]>
Post link: jquery auto complete from scratch part 2

This video will discuss how to create your own auto complete using jquery, We will also look into jquery ajax.
Video Rating: 5 / 5

]]>
https://jqueryplugins.info/2011/08/jquery-auto-complete-from-scratch-part-2/feed/ 0
Isn’t using JQuery instead of Javascript just a complete waste of bandwidth? https://jqueryplugins.info/2011/08/isnt-using-jquery-instead-of-javascript-just-a-complete-waste-of-bandwidth/ https://jqueryplugins.info/2011/08/isnt-using-jquery-instead-of-javascript-just-a-complete-waste-of-bandwidth/#comments Mon, 15 Aug 2011 22:47:28 +0000 Admin https://jqueryplugins.info/2011/08/isnt-using-jquery-instead-of-javascript-just-a-complete-waste-of-bandwidth/ Post link: Isn’t using JQuery instead of Javascript just a complete waste of bandwidth?

Question by : Isn’t using JQuery instead of Javascript just a complete waste of bandwidth? I only rely on about 10-20 self-written Javascript functions for any custom built site anyway...

]]>
Post link: Isn’t using JQuery instead of Javascript just a complete waste of bandwidth?

Question by : Isn’t using JQuery instead of Javascript just a complete waste of bandwidth?
I only rely on about 10-20 self-written Javascript functions for any custom built site anyway (form validators, whitespace strippers, ajax xml loaders, etc.). Is it really worth using JQuery just to ensure compatibility with ALL modern browsers – even though I test on as many as possible anyway – given the additional bandwidth JQuery requires?
Visage – I don’t intend to write functions that are the equivalent of JQuery. I intend to write the same kind of Javascript I’ve been writing since 1996 (albeit with a huge break between 2002 and 2009 because I went into a different line of work), but wondering why I should port it to JQuery.

As an example, I have twenty javascript functions here that I wrote myself. Most are trivial (regexps dealing with whitespace, form validators, etc.), but there are others which process XML being returned from server side Python scripts that I also wrote.

The file size of the JS file is 8.67KB.

If I wrote equivalent code in JQuery, the code size would perhaps be a little smaller (probably about 6KB), but the (minified) JQuery.js script is 74KB. So you’re talking a bandwidth increase about 900% to perform exactly the same tasks.

Surely then, JQuery is only really worthwhile for extremely large websites?

Best answer:

Answer by Visage
Hardly. The production version of JQuery is very minimal, and even if you were to write your own functions that were the equivalent of JQuery, I seriously doubt you could do it in a less amount of kb and with the same degree of compatibility. Really, JQuery is quite minimal. I’ve never seen performance impacted too much by it to even really care.

Know better? Leave your own answer in the comments!

]]>
https://jqueryplugins.info/2011/08/isnt-using-jquery-instead-of-javascript-just-a-complete-waste-of-bandwidth/feed/ 3
Aptana 2 with Jquery code assist / auto complete https://jqueryplugins.info/2011/08/aptana-2-with-jquery-code-assist-auto-complete/ https://jqueryplugins.info/2011/08/aptana-2-with-jquery-code-assist-auto-complete/#comments Wed, 10 Aug 2011 06:09:59 +0000 Admin https://jqueryplugins.info/2011/aptana-2-with-jquery-code-assist-auto-complete/ Post link: Aptana 2 with Jquery code assist / auto complete

How to enable Code Assist / Auto Complete for Jquery in Aptana 2 Video Rating: 4 / 5 Four part video which explains how to do ajax + PHP validation...

]]>
Post link: Aptana 2 with Jquery code assist / auto complete

How to enable Code Assist / Auto Complete for Jquery in Aptana 2
Video Rating: 4 / 5

Four part video which explains how to do ajax + PHP validation on the web form.
Video Rating: 5 / 5

]]>
https://jqueryplugins.info/2011/08/aptana-2-with-jquery-code-assist-auto-complete/feed/ 0