You are using an attribute that cannot be used on the respective html element.

`<element illegal-property="value">`

# How to fix:
Remove the attribute from your code. If you want to add attributes for storing data you may use the html5 `data-` attributes.

`<element data-good-property="value">`
