Skip to main content

Home/ jquery/ Group items tagged jQuery

Rss Feed Group items tagged

Alexis Sgavel

Introducing "Aristo", A jQuery UI Theme - Nothing Insightful - 0 views

  •  
    For those that arn't familiar with jQuery UI, it's essentially a collection of jQuery plugins that try to do for user interaction what jQuery did for JavaScript. Like it's parent library, jQuery UI does its very best to remain cross browser compliant. It is easy to implement. It is very easy to theme. Unfortunately it hasn't seen quite the same uptake as jQuery, and I set out on this task to improve the biggest hurdle I experienced: its design.
Alexis Sgavel

jQuery Plugin Boilerplate - 0 views

  •  
    I started learning jQuery the other day and had a hard time finding a good resource on how to build a jQuery template. What I've found was generally too brief and didn't answer all of my questions. Finally, as a remainder to myself, I've decided to put the things I've learned in a sort of a template for creating jQuery plugins. So, here it is, a boilerplate for kick-starting jQuery plugins development!
Mike More

42 jQuery Experts to Follow on Twitter - 1 views

  •  
    Ever wondered who is behind jQuery? Are you looking for jQuery geek to follow on Twitter? check out this extensive list. It includes jQuery team members, project contributors, book authors, bloggers, speakers, entrepreneurs, web developers and designers.
Mike More

jQuery1.com - #1 resource for jQuery news - 4 views

  •  
    jQuery1.com is #1 resource for jQuery plugins, tutorials and news.
Mike More

8 Most Popular jQuery Plugins of January 2012 - 2 views

  •  
    Last month developers were busy with jQuery and it is time to go through some of the most popular jQuery plugins they created in January 2012.
Mike More

Paging Listbox; Another jQuery Plugin - 1 views

  •  
    Few months ago I posted a Javascript class on how to Implement a paging listbox using jQuery. which has drawn a lot of traffic and few questions lately so I thought it would be more convenient to rewrite the code as jQuery plugin and make few enhancements plus providing a complete sample code in VB.Net and C#.\n
Alexis Sgavel

Drag-and-Drop with jQuery: Your Essential Guide - 0 views

  •  
    Learn how to use jQuery, and the jQuery UI Draggable and Droppable plugins, to create drag-and-drop interfaces in your web pages. Includes a full drag-and-drop card game example.
mikhail-miguel

jQuery - 0 views

  •  
    jQuery: The Write Less, Do More, JavaScript Library
lilin_fr

jQuery Logging - 0 views

  • I’ve been having a lovely day at work, fiddling with jQuery. I started to come up with some really gnarly selector chains though, and I wondered what nodes they were actually addressing. So, I wrote a tiny jQuery extension that logs the current jQuery selection to the firebug console. jQuery.fn.log = function (msg) { console.log("%s: %o", msg, this); return this; }; Now, I can just stuff a call to .log() in the middle of what I’m doing to see what I’m currently addressing. e.g. $(root).find('li.source > input:checkbox').log("sources to uncheck").removeAttr("checked"); The nice thing about logging to firebug is that each node becomes clickable in the console, so you can immediately see the context.
pagetribe .

Working with jQuery, Part 3: Rich Internet applications with jQuery and Ajax : JQuery: ... - 0 views

shared by pagetribe . on 17 Dec 08 - Cached
  • // hides every other <p> on the page $("p:odd").hide();
  • // place a username and password input field on the page <input type=text id="username"> <input type=password id="pass"> // call a server-based PHP file that will process the information passed to it $.post("myFormProcessor.php", {username: $("#username").val(), password: $("#pass").val()}); // conversely, this PHP file could also return information to the function, from which // you could process the results $.post("myFormProcessor.php", {username: $("#username").val(), password: $("#pass").val()}, function(data){ // the data variable contains the text returned from the server, you don't // have to set anything up ahead of time, jQuery will do it all for you if (data != "ERROR") $("#responseDiv").text(data); } );
  • What does this mean? Well, based on the ability to load any Web page, and then parse it with jQuery, you have at your hands a very effective and easy-to-program page scraper, from which you can gather any type of information from any page.
  • ...1 more annotation...
  • <%=message.id %>
Mike More

Retrying AJAX Requests with jQuery ajaxPrefilter - 0 views

  •  
    When a request timeouts and you need to retry it, here is how to do it using ajaxPrefilter that was introduced in jQuery v1.5
Mike More

18 Most Popular jQuery Plugins of March 2012 - 0 views

  •  
    It is time we go through our monthly roundup of the most popular jQuery plugins of March 2012, you will definitely want to try these.
Mike More

15 Most Popular jQuery Plugins of June 2012 - 0 views

  •  
    Another month has passed and it's time for the jQuery plugins roundup. Keep on reading to see what plugins you might have missed in June 2012.
Mike More

Dynamic Page Generation in jQuery Mobile - 1 views

  •  
    This tutorial walks you through the creation of a Mobile Bible viewer as an example of loading content from XML and dynamically generating pages with jQuery Mobile.
Mike More

Building Web Presentations Using jQuery Mobile - 0 views

  •  
    jQuery mobile framework provides easily themeable, HTML5-based interface with support for pages transitions, therefore it would be very easy to create simple web presentations that will work on all popular smartphone and desktop platforms.
Mike More

Combining Your Trending Stories with Twitter Trackbacks! - 1 views

  •  
    This is a simple jQuery tutorial to display Twitter trending stories of your website and their Twitter trackbacks by combining 2 of my jQuery plugins - Popular on Twitter Widget & Twitter Trackbacks Widget.
lilin_fr

::TexoTela:: jQuery - preload images - 0 views

  • jQuery.preloadImages = function() { for(var i = 0; i<arguments.length; i++) { jQuery("<img>").attr("src", arguments[i]); } }
raj malhotra

8 jquery plugin to enhance your HTML form element - 1 views

  •  
    8 jquery plugin to enhance your HTML form element
Alaa Al-Hussein

jQuery Animate - 0 views

  •  
    jQuery animation.
1 - 20 of 256 Next › Last »
Showing 20 items per page