1.0.0 • Published 11 years ago

jquery-empty-or-whitespace v1.0.0

Weekly downloads
2
License
-
Repository
github
Last release
11 years ago

jquery-plugin-empty-or-whitespace

Add a CSS class to elements that are empty or contain only whitespace.

Usage

Add jquery.empty-or-whitespace.js to you page after jquery. Then select elements you want to detect and call the plugin:

<div>
</div>
<div><div></div></div>
<script src="//code.jquery.com/jquery-1.10.1.min.js"></script>
<script src="jquery.empty-or-whitespace.js"></script>
<script>
  $("div").emptyOrWhitespace()
</script>

Output:

<div class="empty-or-whitespace">
</div>
<div><div class="empty-or-whitespace"></div></div>

You can specify the CSS class name by passing it as the first parameter to the plugin function call e.g.

$("div").emptyOrWhitespace("empty")