• Using javascript to validate a numeric condition

    From The Doctor@21:1/5 to All on Mon Sep 11 20:03:57 2023
    I am trying to using jquery.validate.js

    to validate a total to be greater than 0?



    Here is part of the code I am working with

    <script>
    $(document).ready(function(){
    $("#blogm").validate({


    rules:{
    charge_total:{
    required:true, }, ...

    Is this correct?

    --
    Member - Liberal International This is doctor@nk.ca Ici doctor@nk.ca
    Yahweh, King & country!Never Satan President Republic!Beware AntiChrist rising! Look at Psalms 14 and 53 on Atheism https://www.empire.kred/ROOTNK?t=94a1f39b Manitoba on 3 Oct 2023 vote Liberal! Beware https://mindspring.com

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Michael Haufe (TNO)@21:1/5 to The Doctor on Mon Sep 11 17:44:34 2023
    On Monday, September 11, 2023 at 3:04:06 PM UTC-5, The Doctor wrote:
    I am trying to using jquery.validate.js

    to validate a total to be greater than 0?

    [...]

    Is there a reason why you can't just use the native form functionality?

    <form id='blogm'>
    <input name='charge_total' type='number' min='0' required>
    <button>Submit</button>
    </form>

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From The Doctor@21:1/5 to tno@thenewobjective.com on Tue Sep 12 04:30:36 2023
    In article <46aa056d-9519-4a93-bcc3-a342ba2e44fen@googlegroups.com>,
    Michael Haufe (TNO) <tno@thenewobjective.com> wrote:
    On Monday, September 11, 2023 at 3:04:06 PM UTC-5, The Doctor wrote:
    I am trying to using jquery.validate.js

    to validate a total to be greater than 0?

    [...]

    Is there a reason why you can't just use the native form functionality?

    <form id='blogm'>
    <input name='charge_total' type='number' min='0' required>
    <button>Submit</button>
    </form>

    iFWIW, it works!
    --
    Member - Liberal International This is doctor@nk.ca Ici doctor@nk.ca
    Yahweh, King & country!Never Satan President Republic!Beware AntiChrist rising! Look at Psalms 14 and 53 on Atheism https://www.empire.kred/ROOTNK?t=94a1f39b Manitoba on 3 Oct 2023 vote Liberal! Beware https://mindspring.com

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)