Global

Methods

"jQuery.fn.parseTable"(options) → {external:jQuery}

Plugin function. Should be used on elements, that can be clicked (buttons, links, etc)
Parameters:
Name Type Description
options ParseTablePlugin~Settings
Source:
Returns:
Type
external:jQuery
Example
<a id="enter-table-button" class="btn btn-xs" href="#">
    Paste your data here
</a>
<script>
    $("#enter-table-button").parseTable({
        // here go configuration options
        success: function (data) {
            $.ajax(...) // send data to server
        }
    });
</script>