shopping-list/bin/recipes.js
2018-10-24 15:00:27 +02:00

8 lines
221 B
JavaScript

$(document).ready(function(){
$("#recipes font").click(function(){
window.location.href = "/recipe/"+$(this).data("id");
});
$("#new-recipe").click(function(){
window.location.href = "new-recipe";
});
});