Simple Routing System for IEK ΔΕΛΤΑ Students
Include the script in your project
<script src="//develobird.gr/routes.js"></script>
Write in your javascript file the following
Routes({
"/": function(){
alert("You are at home path");
},
"users": function(){
alert("You are at users path");
},
"users/:user_id": function(){
alert("You are watching the user with id " + UrlParams.user_id);
},
default: "/"
});