// In this example, each row in a table will get a red background when
// the mouse moves over it and a white background when the mouse leaves.
$("tr").hover(function(){
$(this).css("background","#0000ff");
},
function(){
$(this).css("background","#ffffff");
});
XML.com: jQuery and XML - 0 views
jQuery Makes Ajax Easy, Part 1 - 0 views
jQuery Basics | jQuery HowTo's - 0 views
Working with jQuery, Part 2: Building tomorrow's Web applications today - 0 views
-
-
attr(name)
-
// will change the image source, and the image displayed on the page will change $("img").attr("src", "myimage.jpg");
- ...5 more annotations...
Tutorials:Edit in Place with Ajax - jQuery JavaScript Library - 0 views
-
var t = $(obj).parent().siblings(0).val();
-
“The obj (save button) has a parent (a div)… go find it. This object has one or more objects on the same level of the DOM tree… I want the first one. And grab the value of that object.”
jQuery UI Accordion - 0 views
Working with jQuery, Part 1: Bringing desktop applications to the browser - 0 views
-
$("p").css("background", "#ff0000");
Working with jQuery, Part 3: Rich Internet applications with jQuery and Ajax : JQuery: ... - 0 views
-
// 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...
s3Slider jQuery plugin - Overview - 0 views
jQuery and JavaScript Coding: Examples and Best Practices | How-To | Smashing Magazine - 0 views
Animated Hover Demonstration - 0 views
moBlur.org - jQuery + jFlot - Plots, Canvas and Charts - 0 views
-
Last 20 days visitors (example chart) 04 mar05 mar06 mar07 mar08 mar09 mar10 mar11 mar12 mar13 mar14 mar15 mar16 mar17 mar18 mar19 mar20 mar21 mar22 mar23 mar
JQuery Corner Demo - 0 views
« First
‹ Previous
61 - 80 of 168
Next ›
Last »
Showing 20▼ items per page