dunno if anyone cares but if you guys are stoned like me during the covid times then you can watch all of the new movies on instaflixxer. Been watching with my gf recently =)
It took me a little bit of time to get used to the accent (my first language is spanish), but when I got used I found it very clear and helpful. Thxs!!!
Very nice video series going on.. concise but all important practical useful topics discussed deeply with examples which is the most important for practical solving problems.. want more and more practical useful topics discussion deeply 👌✌️🙏🙏🙏...
Really helpful for me thank you. I've been trying to do it but not getting the exact output then I came across this video and use your trick and solved the issue.
Thanks for posting this man I was going nuts trying to figure something out and although it was not exactly the same project you helped me figure out what I needed to know to get mine working.
The young man is doing a great job with the videos, no question. But learning JS seems like knowing and memorizing a bunch of commands, like reading a operator manual for a new gadget, with no high level education needed.
you know checked(rd1.checked) is not working, its it not available seems like. i can able to get till rd1.value, but in if condition rd1.checked is not working
@@bernetsubo4431 it all depends from person to person. If you have done any other language earlier, it shouldn't take much time to learn JavaScript. The most important thing is to build logics.
My script code isn't working ... on click event alert box is not showing ... & one more thing in alert method rd1& rd2 are variables or id of input element
Check if JS is by default enabled on your browser. Check for typing mistakes. In alert method the rd1 & rd2 are reference objects to the actual HTML radio elements.
Hi Tanmay i am mahesh why we are typing this (/* var rd1 = document.getElementById("rd1"); var rd2 = document.getElementById("rd2"); */) without this code also we can execute the program right
They are known as attributes of HTML tags. Thats something related to HTML. So most tags in HTML have inbuilt attributes that add some details to the tag. for example a tag has width, height, ID, name etc. You can google it up for now, its kinda pretty easy. search HTML tags and attributes.
@@MANISHSHARMA-xk1su yes bro you're in luck. I've been planning DS and algorithms since 4 months now and have got many requests. So yeah mostly I'll be starting it by December or next year start pakka ✌️😉
if you have 10 radio button you will make 10 variables to check this it's totally wrong. Developer needs to write less code. we can use here for loop for this.
Can anyone help me whats wrong in the below lines of code Sample Javascript function fun() { var a= document.getElementById("rd1"); var b= document.getElementbyId("rd2"); if(a.checked==true) alert("The vehicle selected is:" +a.value); else if(b.checked==true) alert("The vehicle selected is:" +b.value); else alert("No vehicle selected"); } Car Bus Submit
*obj1.checked is not working function buttonClick() { alert("Heeeey"); var obj1 = document.getElementById("rd1").value; alert(obj1); var obj2 = document.getElementById("rd2").value; alert(obj2); if(obj1.checked == true) { alert("iffff"); //this if is not woriking ? document.write("the selected button is "+obj1.value); } else if (obj2.checked == true){ document.write("the selected button is "+obj2.value); } else { document.write("notttthing"); } }