Search for all href starting with this name?

Search for all href starting with this name?

How do I search for all the <a> starting with with hrefhome??

Example I could have 3 or 4 <a> that starting with the id of hrefHome1,2..3
<a id="hrefHome" href="#" data-icon="home">Home</a>

Currently, I just hardcoded the id name:

 $("#hrefHome").click(function () {
                        window.location.href = '/Test/Default.aspx';
   });

   $("#hrefHome2").click(function () {
           window.location.href = '/Test/Default.aspx';
    });

Thanks