(9) JavaScript: Form Validation

(9) JavaScript: Form Validation

CCSIT-KFU

10 лет назад

83,627 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@alvinpiccio6119
@alvinpiccio6119 - 21.11.2014 19:15

i make project title Web-based LMS , i have some problem about the viewing records of the members. Example
If the students or member not return the books in due date i want that have some violation color red in row of the member records table.
To easy determine to the admin the records of member.
sir can you help me about to my problem??
here my email [email protected]
Thank you so much :D
More power!

Ответить
@gdtimesful
@gdtimesful - 16.12.2014 00:55

thank you for this! this is so good! easily the best javascript validation video I've found....and I've been watching a few!

Ответить
@yankumar5280
@yankumar5280 - 28.12.2014 11:50

thanks for sharing CCSIT-KFU

Ответить
@JitendraKumar-zp2tp
@JitendraKumar-zp2tp - 02.01.2015 04:19

This video is awesome for JAVASCRIPT Learning. Thank you. 

Ответить
@padaricohora9094
@padaricohora9094 - 06.01.2015 17:52

Thanks a million, you really went into great detail, explaining the different types of forms, super

Ответить
@rogernkosi8420
@rogernkosi8420 - 30.03.2015 19:01

love this

Ответить
@muthaiahpalaniappan8009
@muthaiahpalaniappan8009 - 07.05.2015 08:14

Great work... Thanks a lot...

Ответить
@palasaninareshreddy106
@palasaninareshreddy106 - 13.05.2015 16:16

Very clear and smart, Thank you

Ответить
@rodrigobautista3768
@rodrigobautista3768 - 29.06.2015 05:09

A great video :DDD , sorry but what text editor are you using in the video?

Ответить
@Zolindigo
@Zolindigo - 14.07.2015 03:12

thank you soooo much, this helped me a lot. God bless you !!!!

Ответить
@brokenmusic5912
@brokenmusic5912 - 27.07.2015 18:37

You my friend are a very good teacher. Thank you

Ответить
@georgigeorgiev2219
@georgigeorgiev2219 - 16.08.2015 20:01

Thank you very much for this lesson. It was very useful.
GOD bless you in THE NAME OF OUR LORD JESUS CHRIST.

Ответить
@talktomesek
@talktomesek - 30.09.2015 04:52

very good thank you for all

Ответить
@faithm5839
@faithm5839 - 01.10.2015 19:09

Thanks for the videos they were very helpful.

Ответить
@satishgupta470
@satishgupta470 - 16.11.2015 17:38

Thanxx alot... you really cleared all my doubts related to form validation.... I just want to knw how to validate the email id.

Ответить
@pervezQadir
@pervezQadir - 26.01.2016 22:41

you are wrong about the '==' & '==='. actually if we use '==' then javascript only matches the content. like ("5" == 5) is true. but when you write '===' this means that the type also matters. ("5" === 5) is not true. you are making a video tutorial. you need to make sure about what you speak. by the way that difference between '==' & '===' is not needed here because anybody who is watching form validation knows these stuffs. I need format validation tutorial. help me with this.

Ответить
@khemsharma8742
@khemsharma8742 - 06.04.2016 15:28

thnx for video

Ответить
@vinaykumarg2423
@vinaykumarg2423 - 07.04.2016 06:55

It is very informative and clear,Thanks man keep up the good work.

Ответить
@djalilbenkadri4957
@djalilbenkadri4957 - 16.04.2016 18:37

i need the code

Ответить
@HaidenMcGrath
@HaidenMcGrath - 18.04.2016 02:47

"===" means equal too and the same type (e.g integer and integer) for anyone who was confused..

Ответить
@sudheerguptha5308
@sudheerguptha5308 - 20.06.2016 17:52

i need that code pl send me a link

Ответить
@Piwopija
@Piwopija - 26.06.2016 16:18

This is one awesome video! :D

Ответить
@mutabazidavid9282
@mutabazidavid9282 - 30.11.2016 03:52

Great tutorial Man thanks a mill

Ответить
@USMANMUSAADAMU
@USMANMUSAADAMU - 11.12.2016 11:09

Awesome video. thanks so very much.

Ответить
@AnshuAditya111293
@AnshuAditya111293 - 27.02.2017 11:07

I got stuck at some point. May I get the code, please?

Ответить
@AnshuAditya111293
@AnshuAditya111293 - 27.02.2017 12:33

What you said about == & === equality is not correct.
"==" equality checks only data. But" ===" checks data as well as data types.
Since Js do not has 'int' and 'float' data types. So for numbers, it does not care for data types.
you can justify it by example. var a="10" var b=10 if you compare them with "==" they will be similar but with "===" they will be different.

Ответить
@binodkhuju6817
@binodkhuju6817 - 04.03.2017 16:00

Thanks for your nice tutorial.But I got a problem that,
If I use (return function), form action doesn't take place and
when I remove( return) the validation doesn't take action.
Could you please help me?About this.

Ответить
@ajazmiah
@ajazmiah - 13.03.2017 07:16

can anyone explain me the for loop because i never see it done like this with "in" ?
thank you

Ответить
@webshakeel8129
@webshakeel8129 - 10.11.2017 07:17

Good

Ответить
@eldinedy6837
@eldinedy6837 - 02.01.2018 21:17

line started at 99 to 110 i believe should be writen as
var flag = false;
var gender = document.vacation.gender;
var generror = document.getElementById("iderrgen");
for(var i in gender){
if(gender[i].checked){
flag = true; //ako je prvi checkbutton
}
}
if(flag == false){
generror.style.visibility = "visible";
}

for better understanding. At least that is my opinion

Ответить
@mickellcameron3563
@mickellcameron3563 - 12.03.2018 19:07

is there code link for this?

Ответить
@learnwithsid2044
@learnwithsid2044 - 23.03.2019 07:14

just required k word lhak deny sy blank validation ho jati hy pir detail men ku Jana es sy agy validate krna sheeken like name ki field men integer value ho to kasy validate krny

Ответить
@radika1446
@radika1446 - 14.04.2019 11:05

Please do the regRex validation!!

Ответить
@Prabha4070
@Prabha4070 - 16.08.2019 11:37

hi thank u for video and how to write for password

Ответить
@naeemaibrahim1645
@naeemaibrahim1645 - 26.03.2020 19:58

This professor is amazing at what he does. Definitely a god-sent!

Ответить