Да, вы можете.Я делаю нечто подобное на одном из моих сайтов, хотя с href
вместо id
, но id
тоже работает.Быстрый пример:
$('a[id]').click(function(e)
{
// This will change the URL fragment. The change is reflected
// on your browser's address bar as well
window.location.hash = this.id;
e.preventDefault();
});