mirror of
https://github.com/tim-krehan/shopping-list.git
synced 2024-11-23 22:30:41 +01:00
6 lines
104 B
JavaScript
6 lines
104 B
JavaScript
|
$(document).ready(function(){
|
||
|
$("#backButton").click(function(){
|
||
|
window.history.back();
|
||
|
});
|
||
|
});
|