# AngularJS - ui routing
# ui-router
# Tuto
# Examples
# url management
$location.search('year', $scope.year);
1
- get specific arg
$location.search().year;
1
remove all args
$location.url($location.path());
1
- remove a specific args
$location.search('coords', null);
1