Skip to content

Found an extra colon. #491

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Found an extra colon.
remove the colon.
  • Loading branch information
alenn88 committed Apr 9, 2014
commit f4fe6e42069b209fde389f1d538ab1453c20fbb6
2 changes: 1 addition & 1 deletion page/ajax/jquery-ajax-methods.md
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ $( "#newContent" ).load( "/foo.html" );

```
// Using $.fn.load to populate an element based on a selector
$( "#newContent" ).load( "/foo.html #myDiv h1:first:", function( html ) {
$( "#newContent" ).load( "/foo.html #myDiv h1:first", function( html ) {
alert( "Content updated!" );
});
```