Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Update entries/jQuery.get.xml
  • Loading branch information
mgol authored Aug 11, 2020
commit e4a5bfc9362dbd035e7666e32f72b56d15651669
4 changes: 2 additions & 2 deletions entries/jQuery.get.xml
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,8 @@ $.get( "test.php", function( data ) {
// If this was sent on https://api.jquery.com/jQuery.get/ you will
// get the response result of https://api.jquery.com/jQuery.ajax/
$.get( "/jQuery.ajax/", function( data ) {
console.log( typeof data );
console.log( data );
console.log( typeof data ); // string
console.log( data ); // HTML content of the jQuery.ajax page
});
]]></code>
</example>
Expand Down