/* * NumberedTextarea - jQuery Plugin * Textarea with line numbering * * Copyright (c) 2015 Dariusz Arciszewski * * Requires: jQuery v2.0+ * * Licensed under the GPL licenses: * http://www.gnu.org/licenses/gpl.html */ (function ($) { $.fn.numberedtextarea = function(options) { var settings = $.extend({ color: null, // Font color borderColor: null, // Border color class: null, // Add class to the 'numberedtextarea-wrapper' allowTabChar: false, // If true Tab key creates indentation }, options); this.each(function() { if(this.nodeName.toLowerCase() !== "textarea") { console.log('This is not a