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!
+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 :-).
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?
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!
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*?
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'); } });
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.
You know what?
Even two years later this video is the about about validation plugin!
you're rock!
Bro. What a champ series, exactly what I was looking for to get into the validator. Shout out!
Awesome set of videos. As a developer very early in my career , these are the best and most helpful videos on validate. Loved them.
Such an awesome series you have given us. I cannot thank you enough for these clear and concise videos.
You are awesome
Best youtube videos possible. Cant wait until your next series of videos.
the way of teaching and explanation is very well.i implemented it on my project which is looking good.thank you so much.
Awesome series. Thanks.
in this video, do i have to create a with class 'form-group' before every input?
+lubana wright No, you don't. That relates to Bootstrap and is not required to use jQuery validation.
Thank you for this series! Good stuff.
You should make more videos. (:
You are a great instructor!
I'm using bootstrap already, must be my lucky day! :)
+Bradley Smith I had a feeling a many people would be using Bootstrap; that is why I used it.
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!
+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 :-).
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?
Awesome videos man. Good shit. Keep it up.
+Eric M Will do. Cheers.
gold content - give us more. NOW. :)
Your videos are really good buddy
This is awesome. keep it up.
+Amon Waita Thank you.
thank you so much
nice tutorial thanks
Great! Thanks a lot!
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!
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*?
1k thanks
Thank you so much
thanks a lot
How can I disable default text warning for required and do a custom style like you did in this video ?
sir how to make if all valiidations. are true then submit button is enable other wise disable .....
How can i show error message in tooltip popover rather than red line as it gives bottom margin..please help me
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');
}
});
thanks keep sharing :)
thanks for sharing, it's work :)
still not working
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.
In 4 videos, You didn‘t talk about validation of checkboxes, radio buttons, select lists, etc.
How to make youtube video like this