I\'m trying to create a link to each id using angularjs ng-href but when I refresh the page, the links don\'t show up. I even closed the browser and cleared the cache yet nothin
I think it's a simple HTML syntax error - the <a> tag has no content. Try changing this:
<a>
<a ng-href="http://www.proj.com/{{ parcel.id }}/edit/"/>{{ parcel.id }}
to:
<a ng-href="http://www.proj.com/{{ parcel.id }}/edit/">{{ parcel.id }}</a>