Puedes obtener el id o cualquier atributo html con el método getAttribute(); Échale un ojo al ejemplo y enlace que te paso si es lo que necesitas.
Código HTML:
Ver original<!DOCTYPE html>
Read about the
<a href="dom_obj_attributes.asp" target="_blank">Attr object
</a>.
<p id="demo">Click the button to display the value of the target attribute of the link above
</p>
function myFunction()
{
var a=document.getElementsByTagName("a")[0];
document.getElementById("demo").innerHTML=a.getAttribute("target");
}
http://www.w3schools.com/jsref/met_e...tattribute.asp