Allowing tab within textarea

There are solutions out there on the subject. We borrowed the following jQuery code from another post: jQuery.fn.extend({ insertAtCaret: function(textToInsert){   return this.each(function(i) {    …

MVC security issue

Using the model-view-controller approach is a great way to organize your code and keep logic separate from presentation, but depending on the framework you use,…