Created
May 15, 2014 10:21
-
-
Save carlosrojaso/02d285db4fefcc086eb7 to your computer and use it in GitHub Desktop.
Working with Selections
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// The .html() method used as a setter: | |
$( "h1" ).html( "hello world" ); | |
// The .html() method used as a getter: | |
$( "h1" ).html(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment