Skip to content

Instantly share code, notes, and snippets.

@elijahmanor
Created August 7, 2011 05:41
Show Gist options
  • Save elijahmanor/1130097 to your computer and use it in GitHub Desktop.
Save elijahmanor/1130097 to your computer and use it in GitHub Desktop.
Find the jQuery Bug #1: Timing - Simple Solution
var contact = {};
$.get( "/Contact/Details/42", function( data ) {
contact = data.contact;
console.log( "Hello " + contact.firstName + " " +
contact.lastName );
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment