SVG Crash Course - Lesson 1 Intro
2:01
Пікірлер
@Mr.React-d4t
@Mr.React-d4t 5 ай бұрын
Awesome madam ❤ thank you so much 🎉🎉🎉
@no-han
@no-han 8 ай бұрын
thanks your videos
@Tutorialworld-g7s
@Tutorialworld-g7s 9 ай бұрын
@ruudkorunka
@ruudkorunka Жыл бұрын
Thank you for your clear explanation. How can I save the submitted data in an .html file or .txt file, so that they will not disappear?
@DigiFisk
@DigiFisk Жыл бұрын
I'll create a new video detailing this.
@tasuttk
@tasuttk Жыл бұрын
I dunno how can I say how much happy I'm today. I was trying to prarctice js alone for the first time and you helped me a lot. For now my happiness is infinite.
@DigiFisk
@DigiFisk Жыл бұрын
Thanks for the compliments!
@Emediong-j4h
@Emediong-j4h Жыл бұрын
Wow😮 The best I have ever watched. This is what I have been looking for. Sending love from Nigeria
@tamzhamz4615
@tamzhamz4615 Жыл бұрын
Thank you for the explanation! Keep up the great work. Subbed
@FMFT
@FMFT Жыл бұрын
Suggestion: AddressBook JavaScript Vanilla
@rajtrivedi4724
@rajtrivedi4724 Жыл бұрын
Hi , Your way to teach this videos was so good that we can understand it very easily . so i would request u to make more videos on javascript please.Tqsm.
@DigiFisk
@DigiFisk Жыл бұрын
Thank you so much for the compliment. I'll definitely be making more videos in the next few weeks. Please post any suggestions you might have for video topics.
@sultanaq7
@sultanaq7 Жыл бұрын
great❤ Thank you I want to do a counter that works right when you load the web page and stops at a specific number. not on click just. Please help me 🌹🌹💕
@ammadhoorani8036
@ammadhoorani8036 Жыл бұрын
TY :)
@crangel155
@crangel155 Жыл бұрын
For anyone that is having a problem with the page refreshing on submit. In the <form> tag put onsubmit="return false". This worked for me, it stops the page from refreshing when you hit the button but still submits the data. This took me a while to figure out.
@crangel155
@crangel155 Жыл бұрын
that is if you used a submit type instead of a button for some reason like I did
@pankajantil8349
@pankajantil8349 2 жыл бұрын
Mam I want ask about remove row data
@ansarshaikh2486
@ansarshaikh2486 2 жыл бұрын
nice job and nice voice u have
@manojsamarakoon9697
@manojsamarakoon9697 2 жыл бұрын
Grate explanation 👍
@asaralokp582
@asaralokp582 2 жыл бұрын
মাদার চোদ কি বলিশ বুঝি না কেনো?বেশি ভাব নিশ না?
@dcdailycare
@dcdailycare 2 жыл бұрын
It was a nice tutorial until it reached javascript.
@gopikrishnan6667
@gopikrishnan6667 2 жыл бұрын
If I hit input entry button... It's showing undefined in the table cells...has anybody got this same error... How to resolve this?
@kannand803
@kannand803 2 жыл бұрын
Hi, when I try to submit the form. It returns an empty row. I did console.log, values are showing there.
@channel-tj6iq
@channel-tj6iq 2 жыл бұрын
Please ithu Tamil explain panni Video potunga please
@weronikaronnie
@weronikaronnie 2 жыл бұрын
Great tutorial!
@mohammadfazal849
@mohammadfazal849 2 жыл бұрын
very useful in 2022
@dodoing7554
@dodoing7554 2 жыл бұрын
wow
@topbestmalayalam5407
@topbestmalayalam5407 2 жыл бұрын
Git hub link
@smiledailyshorts
@smiledailyshorts 2 жыл бұрын
yooo thankss
@mdrojjob4459
@mdrojjob4459 2 жыл бұрын
Thank you so Much
@fasteddieguitar1891
@fasteddieguitar1891 2 жыл бұрын
<!DOCTYPE html> <html> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width" /> <title>event</title> <style> * { margin: 0; padding: 0; } html { background-color: #b3ffff; /* Radial gradient background - css3 */ background: radial-gradient(rgba(179, 255, 255, 0.5), rgba(255, 255, 255, 0.5), rgba(0, 0, 0, 0.3)); text-align: center; } #nameDiv { margin-top: 50px; } .input { font-size: 25px; color: black; font-weight: 700; font-family: "Comic Sans MS", cursive, sans-serif; margin: 20px; } #entry { width: 150px; height: 40px; font-size: 23px; font-family: "Comic Sans MS", cursive, sans-serif; background-color: #001a66; color: whitesmoke; box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.5); margin-top: 10px; } table { border-collapse: collapse; width: 50%; margin: 50px auto; background-color: burlywood; } table, th, td { border: 2px solid black; padding: 5px; } th { font-size: 30px; font-weight: 700; font-family: Arial; color: black; } td { font-size: 25px; color: crimson; font-weight: 400; font-family: Georgia; } </style> </head> <body> <div id="container"> <div class="input">Name: <input id="name" type="text" placeholder="John Smith" /></div> <div class="input">Age: <input id="age" type="text" placeholder="18" /></div> <div class="input">Grade: <input id="grade" type="text" placeholder="A" /></div> <button id="entry">Input entry</button> </div> <table id="display"> <tr> <th>Name</th> <th>Age</th> <th>Grade</th> </tr> </tbody> </table> <script> var row = 1; var entry = document.getElementById("entry"); entry.addEventListener("click", displayDetails); function displayDetails() { var name = document.getElementById("name").value; var age = document.getElementById("age").value; var grade = document.getElementById("grade").value; if(!name || !age || !grade) { alert("Please fill in all the boxes"); return; } var display = document.getElementById("display"); var newRow = display.insertRow(row); var cell1 = newRow.insertCell(0); var cell2 = newRow.insertCell(1); var cell3 = newRow.insertCell(2); cell1.innerHTML = name; cell2.innerHTML = age; cell3.innerHTML = grade; row++; } </script> </body> </html>
@harshsaraswat7024
@harshsaraswat7024 2 жыл бұрын
its not working in me anybody help
@sunwinsunny
@sunwinsunny 2 жыл бұрын
Thank you , I really needed this
@LavkushDhepevlogs
@LavkushDhepevlogs 2 жыл бұрын
If suppose SR No table is there how will increase automatically serial wise if we put data serial wise
@LavkushDhepevlogs
@LavkushDhepevlogs 2 жыл бұрын
When we submit input entry and that i want to empty input
@no_idea_thala
@no_idea_thala 2 жыл бұрын
Very good explanation
@priyeshgupta164
@priyeshgupta164 2 жыл бұрын
How can we add data that we retrieve from backend java application, running on eclipse. I want to show this data as a table data in html.
@choicessoftware2798
@choicessoftware2798 2 жыл бұрын
Thank you. Also, would like to know how to extract negative numbers and decimal numbers.
@arunkaiser
@arunkaiser 2 жыл бұрын
👍👍👍👍👍
@sillajagadeesh4060
@sillajagadeesh4060 2 жыл бұрын
Mam how can we give access to fill the data for some members only
@arunkaiser
@arunkaiser 2 жыл бұрын
Need more contents like this
@arunkaiser
@arunkaiser 2 жыл бұрын
Great Content 🤗
@DigiFisk
@DigiFisk 2 жыл бұрын
Thank you Arun!
@bangcao85
@bangcao85 2 жыл бұрын
Hello, Thank you. You explain a lot better than my instructors that I have right now. I am trying to create a workout app, where user enter their max rep for "Bench", and "Squat." I created a table with the names of the exercise and number of sets. I don't know how display the result into that particular cell. For example, user enters 155 lbs max bench press. The formula is 155 x .45 = 69.75 lbs ( I want to round it up to 70 lbs). I want to display that into a specific location on the table with the value of 70 lbs. You can teach something like that?
@deepaknirmal8667
@deepaknirmal8667 2 жыл бұрын
Great explanation. Thanks.
@DigiFisk
@DigiFisk 2 жыл бұрын
Glad it was helpful!
@remington1121
@remington1121 2 жыл бұрын
ƤRO𝓂O𝕤ᗰ 💦
@AbdulRehman-wx6mj
@AbdulRehman-wx6mj 2 жыл бұрын
Your course at udemy is my favorite as it is easy for every beginner no matter whether he was a programmer or not and I learned a lot from that course
@DigiFisk
@DigiFisk 2 жыл бұрын
I'm glad to hear that Abdul!
@reeteshv9444
@reeteshv9444 2 жыл бұрын
not able to add margin for table after a cell
@davindrabrabumathivanan5523
@davindrabrabumathivanan5523 2 жыл бұрын
Nicely explained... looking forward for more JavaScript tutorial projects
@DigiFisk
@DigiFisk 2 жыл бұрын
Thank you! More to come!
@MukulSharma-nr3te
@MukulSharma-nr3te 2 жыл бұрын
nice teaching
@DigiFisk
@DigiFisk 2 жыл бұрын
Thank you!
@francisjacquart9618
@francisjacquart9618 2 жыл бұрын
YOUR TUTORIALS ARE ALL REALLY FANTASTIC. I AAM A TEACHER, AN AUTODIDACT AND ALSO A NOVICE AND I UNDERSTAND EVERYTHING YOU EXPLAIN. THANSKS SO MUCH FOR THESE WONDERFUL MINI APPLICATIONS. I ONLY WISHED, THAT YOU MADE MORE OT THEM TO LEARN EVEN MORE FROM YOU, BUT THANKS FOR YOU GENEROSITY! LOVE AND TAKE CARE! FRANCIS, 68 LEARNING TO PROGRAMM AND CODE SERIOUSLY FOR THE FIRST TIME IN MY LIFE AND ALL BY MYSELF. I JUST LOVE IT! I STARTED IN FEBRUARY OF THIS YEAR, 2022.
@DigiFisk
@DigiFisk 2 жыл бұрын
Thanks for the compliments Francis. All the best in your coding journey! :)
@francisjacquart9618
@francisjacquart9618 2 жыл бұрын
GREAT EXPLANATIONS AGAIN! YOU ARE A GREAT TEACHER! THANKS A LOT!
@DigiFisk
@DigiFisk 2 жыл бұрын
Thank you Francis! :)
@balamuralimedia1653
@balamuralimedia1653 2 жыл бұрын
madam please provide source code.. my vs Code it did't worked .....i enter what you told ....but it not worked
@francisjacquart9618
@francisjacquart9618 2 жыл бұрын
GREAT TUTORIAL, THANKS A LOT!
@DigiFisk
@DigiFisk 2 жыл бұрын
Glad it was helpful!
@shafferiyasudheenr5499
@shafferiyasudheenr5499 2 жыл бұрын
I didn't get this output