Skip to content

Examples

Paragraphy Disabled

Set the paragraphy option to false if you don't want to use paragraphs for new line.

HTML

<div id="eg-paragraphy-disabled" class="text-small">
  Set the <strong>paragraphy</strong> option to false if you don't want to use paragraphs for new line.
</div>

JAVASCRIPT

<script>
  $(function() {
    $('div#eg-paragraphy-disabled').editable({
      inlineMode: false,
      paragraphy: false
    })
  });
</script>
File: 7075