Currently, the token removal action uses a link with an empty fragment identifier:
<a href="#" class="item-remove" tabindex="-1">×</a>
As this action changes page state, rather than requests a new page, it should probably use a button instead, something like:
<button class="item-remove" tabindex="-1">×</button>