Вы можете использовать
window.location.hash
, чтобы получить часть URL, которая следует за символом #, включая символ #.
См. window.location
В вашем случае он вернет #name
.
$(function(){
$("#btn1").click(function( ){
var elemName = window.location.hash;
/* $(elemName) will retrieve the jQuery element with the corresponding
id and you can apply the effect to this element.*/
});
});