Skip to content

Instantly share code, notes, and snippets.

@kborchers
Created July 18, 2012 18:56
Show Gist options
  • Save kborchers/3138070 to your computer and use it in GitHub Desktop.
Save kborchers/3138070 to your computer and use it in GitHub Desktop.
$.mockjax({
url: 'tasks',
responseTime: 1000,
responseText: [
{
id: 12345,
data: {
title: "Do Something",
date: "2012-08-01"
}
},
{
id: 67890,
data: {
title: "Do Something Else",
date: "2012-08-02"
}
}
]
});
$.mockjax({
url: 'tasks',
data: { limit: 1 },
responseTime: 1000,
responseText: [
{
id: 12345,
data: {
title: "Do Something",
date: "2012-08-01"
}
}
]
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment