The ping attribute of the a element is used for hyperlink auditing - basically when a link is followed each url listed in the attribute is 'pinged' with a HTTP POST.
According to to Can I Use it's supported on all major modern browsers except Firefox (one day maybe).
How do I detect with JavaScript if the browser supports this functionality?
The following expression
"ping" in HTMLAnchorElement.prototypewill returntrueif the browser supports thepingattribute,falseotherwise.