Хотя вы не можете сделать это напрямую, вы можете создать массив элементов со свойством onmousedown, используя несколько встроенных функций.
// get all anchor tags
var anchors = document.getElementsByTagName('a');
// empty array to store matches in
var matches = [];
// loop through all anchors
for (var i = 0, len = anchors.length; i < length; i++)
{
// if there is an onmousedown function, add it to the array
if (typeof anchors[i].onmousedown === 'function')
{
matches.push(anchors[i]);
}
}