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.
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.
Wow didn't know JavaScript had native methods for inserting rows and cells in tables. Always used document.createElement(). A nice trick that I learned about inserting cells and rows is if you don't want to keep track of the row or cell index is to use -1 var cell1 = newRow.insertCell(-1); var cell2 = newRow.insertCell(-1); var cell3 = newRow.insertCell(-1); is just the same as: var cell1 = newRow.insertCell(0); var cell2 = newRow.insertCell(1); var cell3 = newRow.insertCell(2); And *var newRow = display.insertRow(row);* is same as *var newRow = display.insertRow(-1);*
Again, your voice really are relaxing my mind, and Damn why the hell i just found you now, you're really have a damn good teach and explaining skill, please update more video...
For anyone that is having a problem with the page refreshing on submit. In the 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.
An excellent solution, thank you for this teacher. I have done this slightly differently through the implementation of insertRow(-1). It cuts down on the code a little bit, and is good for single line entry processes. (tableID) => { let tableRef = document.getElementById('my-table'); let newRow = tableRef.insertRow(-1);
Hey thanks for video! Would it also be possible to sort the table like that the new entry always gets showed on top of the table? Thank you in advance!
Hi I really enjoyed your tutorial and watched all three of your videos of the series!! Can you tell me how to add border radius to all cells heading separatelly??
mam, I am Surbhi from Bhubaneswar Odisha. I am facing a problem with the code. my table shows the data for a few seconds and then disappear. hope you will help me with this.
Ma'am I don't be able insert my data dynamically.i have already watched and doing practical with you but I can't be able to display data dynamically can please guide me.
I needed a database as same which as shown on video. Which save data (for ex. If i have 100 mobile if one sale it should be delete from row and shows as 99 remain.
Jesus loves you so much ❤️ I was addicted to porn for almost 6 years of my life, I was on drugs, alcohol and I hated people, Jesus set me free and he can set you free aswell ❤️ all you have to do is repent and trust in him and he will change your life!! ❤️
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.
Thanks for the compliments!
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.
Thanks for the compliments Francis. All the best in your coding journey! :)
Wow didn't know JavaScript had native methods for inserting rows and cells in tables. Always used document.createElement().
A nice trick that I learned about inserting cells and rows is if you don't want to keep track of the row or cell index is to use -1
var cell1 = newRow.insertCell(-1);
var cell2 = newRow.insertCell(-1);
var cell3 = newRow.insertCell(-1);
is just the same as:
var cell1 = newRow.insertCell(0);
var cell2 = newRow.insertCell(1);
var cell3 = newRow.insertCell(2);
And *var newRow = display.insertRow(row);* is same as *var newRow = display.insertRow(-1);*
Wow😮 The best I have ever watched.
This is what I have been looking for.
Sending love from Nigeria
Again, your voice really are relaxing my mind, and Damn why the hell i just found you now, you're really have a damn good teach and explaining skill, please update more video...
Thanks! Yes, I'll create more videos in the next few weeks, starting from today.
For anyone that is having a problem with the page refreshing on submit. In the 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.
that is if you used a submit type instead of a button for some reason like I did
Tutorial is really nice and I am impressed with your voice and delivering flow
same
Thank you! :)
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?
I'll create a new video detailing this.
Nicely explained... looking forward for more JavaScript tutorial projects
Thank you! More to come!
An excellent solution, thank you for this teacher.
I have done this slightly differently through the implementation of insertRow(-1). It cuts down on the code a little bit, and is good for single line entry processes.
(tableID) => {
let tableRef = document.getElementById('my-table');
let newRow = tableRef.insertRow(-1);
this is so amazing, thankx a lot. i tried to display data using array but your way is much better
my button can't work
Very nice app! It would be fun to continue expanding this app. E.g. let different users save their table, delete entries, edit entries, etc.
More videos to come. Please look forward to them. :)
Thanks for explaining in such detail.
great Mam, try to solve more advanced javascript lecture we will be waiting. Thank You.
Great ..it really helped..can you pls show how to delete the last row if user clicks a button say Delete Data
Cooolll, thank you
One more problem what if I misspell and submit and need to edit the information or delete it how do I add that button option
Awesome madam ❤ thank you so much 🎉🎉🎉
Suggestion: AddressBook JavaScript Vanilla
can u tell me the code to hide the table headings
Very Nice❣Voice concept also
thank you for explaining in detail.
Hey thanks for video! Would it also be possible to sort the table like that the new entry always gets showed on top of the table? Thank you in advance!
Hi I really enjoyed your tutorial and watched all three of your videos of the series!!
Can you tell me how to add border radius to all cells heading
separatelly??
You can select "th" in CSS (selector) and add a border.
thanks your videos
If suppose SR No table is there how will increase automatically serial wise if we put data serial wise
can you help me with displaying the database table rows like this when I click the button it should show the whole table PHP and AJAX JS
Great explanation. Thanks.
Glad it was helpful!
mam, I am Surbhi from Bhubaneswar Odisha. I am facing a problem with the code.
my table shows the data for a few seconds and then disappear. hope you will help me with this.
In my case only new row and cell is created.,but no data gets displayed.
Have u solved the problem bro
Hi, when I try to submit the form. It returns an empty row. I did console.log, values are showing there.
It's showing cannot read properties of null(reading 'addEventListener')?
thank you so much great one for CRUD operations
It is not a CRUD, C = Create, R = Read, U = Update, D = Delete
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.
Nice video very helpful, can u tell create video on how to avoid duplicate entry?
Thanks.. Its very helpfull
Glad it was helpful!
Hello ma'am why there is a value in table are disappear in 1 second what is the reason?
these videos are very helpful
Thank you , I really needed this
Thank you so Much
Thanks it is really so helpful
Keep doing this
Can you try to reload. If it won't dissapear the text
Sir using react js how to display the same output.
hello, can you please share how you would sort this data, since it is not an array?
nice teaching
Thank you!
.InsertRow(row)
Found error like this function is not defined so what should I do?
JavaScript is case sensitive. The function is insertRow
Great explanation.
This was amazing, Many thanks!!
how to validate your form? where to include that alerts? like enter only characters
BIG THANKS!
can the table be on the next page and whenever the user clicks the button it redirects to the next page with the table please reply
Thank you Sister
Ma'am I don't be able insert my data dynamically.i have already watched and doing practical with you but I can't be able to display data dynamically can please guide me.
When we submit input entry and that i want to empty input
But madam how it will store each time will refresh it goes clean
Nice video.
Better to have a button to delete row.
Nice vedio sister
Hey after display i want go insert these table value can u please create one more video on these
Yes, I'll do that.
very nice
very helpful
TY :)
Thank you 😊💞 so much mam
If I hit input entry button... It's showing undefined in the table cells...has anybody got this same error... How to resolve this?
I needed a database as same which as shown on video. Which save data (for ex. If i have 100 mobile if one sale it should be delete from row and shows as 99 remain.
AddressBook JavaScript Vanilla
can we use createElement for creation of new rows in table and then use appendChild to it???? can anyone please help
Which text editor you used
Bracket
You can use Visual studio Code now, it works better actually.
Thank you so much❤️
thank you...
niceee
Thanks! :)
❤
I didn't get this output
thanks
madam please provide source code..
my vs Code it did't worked .....i enter what you told ....but it not worked
Jesus loves you so much ❤️ I was addicted to porn for almost 6 years of my life, I was on drugs, alcohol and I hated people, Jesus set me free and he can set you free aswell ❤️ all you have to do is repent and trust in him and he will change your life!! ❤️
I need the source code.Can You please Share it??
AddressBook JavaScript Vanilla
you are a hero :D
Very good.
can you please share the source code?
AddressBook JavaScript Vanilla
Thanks so much!!!
its not working in me anybody help
You are very good at teaching , keep working hard . well explained , you earn subscriber's
Thanks for the compliment! I'll be creating a lot more videos soon. Hope you enjoy them as well.
Can you give this code? please
AddressBook JavaScript Vanilla
ow girl.. finallyyyy
It was a nice tutorial until it reached javascript.
Its Not working
i face the same issue which is yours,
but then i recheck my code and find my mistake
then it's working,,,,
she's doing awesome
J's code........View
meci
Which text editor u used
Thank you
Welcome!