up dir
/* * @title cd .. * @description up dir * @include http://* * @license MIT License */ a=location.pathname.split('/'); if(a.pop()=='')a.pop(); location.pathname=a.join('/');