Комментарии:
This type of explanation is mostly required for everyone ❤
ОтветитьSimple & Superb tutorial
ОтветитьThank you so much .This tutorial is very helpful to me.
ОтветитьNow Learning JavaScript.. This playlist Helpful even now..
Ответитьdon't these methods parseFloat and parseInt throw any exception while parsing text ?
ОтветитьYour explanation is highly simple and this video have been of great help to me.
Thank you so much.
Please make on Universal Windows Platform
Ответитьwhen i tried to do minus then it is not working can you help me
Ответитьthank you so much I needed this :)
ОтветитьI love the way you explain your the best teacher
ОтветитьYour Explanation is highly simplified and simple. Your videos have been of great help to me. keep doing the good job.
ОтветитьVery great work for giving this useful lectures to us, thanks brother.
please make a series on one complete project with JS oops also, it will be a great help..
I was doing it in simple forms and after using isNaN function my whole code was not working infact nothing was working afterwards.
Can you suggest me the error ?
I love the way you explain. <3 Thank you :-)
ОтветитьThank you sir😊
ОтветитьHello , how we can save a control like textbox in a data base ??
Ответитьbest explanation thanks
Ответитьin tutorial number 7 you mentioned , we should not place the script file into head tag , but in this example you put the function "addNumber" in head tag. I am kinda confuse .
ОтветитьThank you for the tutorial but IsNan methond not working
Ответитьi did it like this...
html --------------------------------
<input id="firstNumber" placeholder="0" /><br />
<input id="secondNumber" placeholder="0" /><br />
<button onclick="myNumber()">Add</button>
<p id="showNumber"></p>-----------------end of html--------------------
java script ----------------------------------
function myNumber() {
var x, y, display;
display = document.getElementById("showNumber");
x = Number(document.getElementById('firstNumber').value);
y = Number(document.getElementById("secondNumber").value);
display.innerHTML = x + y;
if(isNaN(x) && isNaN(y)) {
display.innerHTML = "input numbers";
return;
}
if(isNaN(x)) {
display.innerHTML = "first box is not a number";
return;
}
if(isNaN(y)) {
display.innerHTML = "second box is not a number";
return;
}
}-----------------------end of js-------------------------
umm is it good?
Just out of curiosity (I'm new to JavaScript) why wouldn't you use input type="number" instead of input type="text"?
Ответитьwhat about when we want both int as well as float
Ответитьthis man is the truth! shout out to all my Indians out there!
ОтветитьThank you very much for this video.
ОтветитьI love your examples because they solve real world problems !
ОтветитьThanks venkat
ОтветитьHi Venkat, Thanks for the tutorial. I typed the code in notepad, notepad++ and in Dreamweaver but when I saw the html page in browser it is showing, one table with border and names of the text fields alone. Text fields are not displayed. Why?, will you please help.
ОтветитьDear Venkat, Thanks for your clear and understandable articles on .Net Technologies, I request you to please post videos on CSS.
ОтветитьTry 123abc in any one textbox and press add..
and plz give the solution