Skip to content
This repository has been archived by the owner on Jan 25, 2024. It is now read-only.

Troubleshooting

Harmen Janssen edited this page Oct 5, 2020 · 2 revisions

Troubleshooting

Missing HTML attributes

If you're missing HTML attributes, make sure you're rendering a space between them. This error has been known to cause attributes to disappear.

Example:

<div data-foo="1"data-bar="2">
  ...
</div>

Fix by applying whitespace between the attributes:

<div data-foo="1" data-bar="2">
  ...
</div>
Clone this wiki locally