Corporate Members jQuery


Support from our corporate members makes it possible for the jQuery Foundation to continue our work on our JavaScript libraries and pushing the open web forward with events and participation in the standards process. View our members page for a full list of corporate and individual members.
Other jQuery Foundation Projects

A Brief Look
DOM Traversal and Manipulation
Get the
<button>
element with the class 'continue' and change its HTML to 'Next Step...'$( "button.continue" ).html( "Next Step..."
Event Handling
Show the
Event HandlingShow the
#banner-message
element that is hidden with display:none
in its CSS when any button in #button-container
is clickedvar hiddenBox = $( "#banner-message" );
$( "#button-container button" ).on( "click", function( event ) {
hiddenBox.show();
});
Show the
#banner-message
element that is hidden with display:none
in its CSS when any button in #button-container
is clicked$.ajax({
url: "/api/getWeather",
data: {
zipcode: 97201
},
success: function( data ) {
$( "#weather-temp" ).html( "<strong>" + data + "</strong> degrees" );
}
});
0 komentar:
Posting Komentar