Комментарии:
Try 123abc in any one textbox and press add..
and plz give the solution
Dear Venkat, Thanks for your clear and understandable articles on .Net Technologies, I request you to please post videos on CSS.
Ответить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.
ОтветитьThanks venkat
ОтветитьI love your examples because they solve real world problems !
ОтветитьThank you very much for this video.
Ответитьthis man is the truth! shout out to all my Indians out there!
Ответитьwhat about when we want both int as well as float
ОтветитьJust out of curiosity (I'm new to JavaScript) why wouldn't you use input type="number" instead of input type="text"?
Ответить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?
Thank you for the tutorial but IsNan methond not working
Ответить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 .
Ответитьbest explanation thanks
ОтветитьHello , how we can save a control like textbox in a data base ??
ОтветитьThank you sir😊
ОтветитьI love the way you explain. <3 Thank you :-)
Ответить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 ?
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..
Your Explanation is highly simplified and simple. Your videos have been of great help to me. keep doing the good job.
ОтветитьI love the way you explain your the best teacher
Ответитьthank you so much I needed this :)
Ответитьwhen i tried to do minus then it is not working can you help me
ОтветитьPlease make on Universal Windows Platform
ОтветитьYour explanation is highly simple and this video have been of great help to me.
Thank you so much.
don't these methods parseFloat and parseInt throw any exception while parsing text ?
ОтветитьNow Learning JavaScript.. This playlist Helpful even now..
ОтветитьThank you so much .This tutorial is very helpful to me.
ОтветитьSimple & Superb tutorial
ОтветитьThis type of explanation is mostly required for everyone ❤
Ответить