# Requirements - **set `href` attribute in all `<a>` tags**, e.g.: ``` html <a href="javascript:void(0)" ng-click=""></a> ``` Refs: - http://stackoverflow.com/a/138233/1108919 - **use `data-` prefix for all non-standard HTML attributes**, e.g.: `ng-click` >> `data-ng-click` Refs: - http://stackoverflow.com/a/2451188/1108919 - http://caniuse.com/#feat=dataset - http://w3c.github.io/html/dom.html#custom-data-attribute - https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Using_data_attributes
Requirements
set
hrefattribute in all<a>tags, e.g.:Refs:
use
data-prefix for all non-standard HTML attributes, e.g.:ng-click>>data-ng-clickRefs: