jQuery Validation Plugin: Custom Error Styles (4/4)

Поділитися
Вставка
  • Опубліковано 9 лис 2024

КОМЕНТАРІ • 39

  • @AlexBodrovFamily
    @AlexBodrovFamily 7 років тому

    You know what?
    Even two years later this video is the about about validation plugin!
    you're rock!

  • @DevMcLean
    @DevMcLean 2 роки тому

    Bro. What a champ series, exactly what I was looking for to get into the validator. Shout out!

  • @stephenaitken1560
    @stephenaitken1560 2 роки тому

    Awesome set of videos. As a developer very early in my career , these are the best and most helpful videos on validate. Loved them.

  • @FlyingHippiesGaming
    @FlyingHippiesGaming 6 років тому +1

    Such an awesome series you have given us. I cannot thank you enough for these clear and concise videos.
    You are awesome

  • @jicos1234
    @jicos1234 7 років тому

    Best youtube videos possible. Cant wait until your next series of videos.

  • @vikashkumarrao9582
    @vikashkumarrao9582 6 років тому

    the way of teaching and explanation is very well.i implemented it on my project which is looking good.thank you so much.

  • @preet.multani
    @preet.multani 9 років тому +1

    Awesome series. Thanks.
    in this video, do i have to create a with class 'form-group' before every input?

    • @bookercodes
      @bookercodes  9 років тому

      +lubana wright No, you don't. That relates to Bootstrap and is not required to use jQuery validation.

  • @Reeder6Wisconsin
    @Reeder6Wisconsin 6 років тому

    Thank you for this series! Good stuff.

  • @Neal7Bhanushali7
    @Neal7Bhanushali7 7 років тому

    You should make more videos. (:
    You are a great instructor!

  • @bradleysmith2179
    @bradleysmith2179 9 років тому +1

    I'm using bootstrap already, must be my lucky day! :)

    • @bookercodes
      @bookercodes  9 років тому

      +Bradley Smith I had a feeling a many people would be using Bootstrap; that is why I used it.

  • @Brooooonay
    @Brooooonay 9 років тому +2

    Thank you, found your video very helpful! In my case, I want to use a Glyphicon along with the has-error class to show a field is invalid. Only when the field is clicked will the error message dropdown. Do you have any suggestions on the best way to do this? Thanks again!

    • @bookercodes
      @bookercodes  9 років тому

      +Bryan Alexander First of all, thank you for watching my video. Re. your problem: It is difficult to answer questions like yours here in the UA-cam comments. I recommend that you instead ask your question on StackOverflow.com and link me to the question. Remember to include a SSCE (sscce.org/) and to show what you have tried already :-).

  • @SuperJAIMISH
    @SuperJAIMISH 7 років тому

    I was struggling with this for a while. I came across your series and it was really helpful! Thanks a ton, keep the videos rolling. Does anyone know how to increase thickness of the highlight?

  • @Erin-bc8ic
    @Erin-bc8ic 8 років тому +1

    Awesome videos man. Good shit. Keep it up.

  • @willer2k
    @willer2k 5 років тому

    gold content - give us more. NOW. :)

  • @rathodnarendra6374
    @rathodnarendra6374 6 років тому

    Your videos are really good buddy

  • @waitaamon
    @waitaamon 9 років тому +1

    This is awesome. keep it up.

  • @vohoangan6121
    @vohoangan6121 3 роки тому

    thank you so much

  • @delisandor5337
    @delisandor5337 6 років тому

    nice tutorial thanks

  • @giorgimerabishvili8194
    @giorgimerabishvili8194 8 років тому

    Great! Thanks a lot!

  • @pervezQadir
    @pervezQadir 8 років тому

    Awesome video man, (y).
    But I have no idea after watching this that how could i do it with php. Help me what changes are needed to do it with php.
    Thank you!

    • @bookercodes
      @bookercodes  8 років тому

      I mean, instead of writing the html in a ".html" file, you'll probably want to do it in a ".php" template. Aside from that, I'm not sure how I can help. What is it you're struggling with *specifically*?

  • @tibangtibangbekomlani9091
    @tibangtibangbekomlani9091 3 роки тому

    1k thanks

  • @abdelhafidsaou6815
    @abdelhafidsaou6815 6 років тому

    Thank you so much

  • @mdmaidul428
    @mdmaidul428 6 років тому

    thanks a lot

  • @pirate_dev
    @pirate_dev 7 років тому

    How can I disable default text warning for required and do a custom style like you did in this video ?

  • @vikasmalana9932
    @vikasmalana9932 6 років тому

    sir how to make if all valiidations. are true then submit button is enable other wise disable .....

  • @baseerx
    @baseerx 6 років тому

    How can i show error message in tooltip popover rather than red line as it gives bottom margin..please help me

  • @erosmarcuszamora8828
    @erosmarcuszamora8828 5 років тому +8

    If yours is not working maybe you are using different bootstrap version that is not like in this tutorial, this how i fix it. I use the class 'form-control' on my inputs and then used 'is-invalid' class. And also the help-block is not working so I used text-danger. Hope you understand my explanation. God bless
    $.validator.setDefaults({
    errorClass: 'text-danger',
    highlight: function(element) {
    $(element)
    .closest('.form-control')
    .addClass('is-invalid');
    },
    unhighlight: function(element) {
    $(element)
    .closest('.form-control')
    .removeClass('is-invalid');
    }
    });

  • @madhumitasampath9902
    @madhumitasampath9902 8 років тому

    My form does not change to red when an incorrect value is entered. I have used the exact same code. What might be the problem? I have included this bootstrap cdn too.

  • @toma1610
    @toma1610 3 роки тому

    In 4 videos, You didn‘t talk about validation of checkboxes, radio buttons, select lists, etc.

  • @mmajid31
    @mmajid31 3 роки тому

    How to make youtube video like this