Giter Club home page Giter Club logo

Comments (1)

jessenieminen avatar jessenieminen commented on July 4, 2024 1

Hi @unsruns , thanks for your inquiry and interest in jquery-comments.

Limiting comment length is a feature that we haven't (at least yet) built directly into the plugin. This is, however, really simple to achieve as we offer postComment and putComment callbacks (see the documentation) that'll let you do client side validation on the comments by just checking the length of the comment description before posting it to the server with something like:
if(commentJSON['description'].length > 1000) { alert('Maximum length for comments is 1000 characters.')} else { postCommentToServer(); }
With, of course, the alert function swapped to whatever notification system you already have in place in your app.

This could also be a somewhat useful feature for jquery-comments in general so if you're planning to do this, we'd be delighted to see a pull request from you, as long as you make sure the feature can also be turned off via the settings.

However, just as a reminder, make sure you're also validating the comment length in your backend among other model validations for both security and robustness. Client side validation is only good for giving the user a great UX.

from jquery-comments.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.