it's refreshing when i click to that add button and nothing happens
@jackiedelgado5720 Жыл бұрын
my rows disappear :(
@WorkAccount-v6lАй бұрын
@@jackiedelgado5720 u might forgot "+" before "=" where the row is table.innerHTML += templates;
@user-md2fm7ik2z4 жыл бұрын
Straight-forward! Thanks!
@WesMinecraft3 жыл бұрын
Super helpful tutorial. Saves me a lot of time :)
@joaovictorserra3837 Жыл бұрын
great video man
@KodeBaseChannel Жыл бұрын
Thanks for the visit
@johanngreyvenstein91802 жыл бұрын
very cool man. thank you
@magedghabour24663 жыл бұрын
I want to Save data When I make reload to the page? what should I do ?
@NAEL4SLR2 жыл бұрын
Thanks for sharing
@mithunkumars60973 жыл бұрын
How can add a new row to the top of the table below the header row
@KodeBaseChannel3 жыл бұрын
Change this line => table.innerHTML += template; table.innerHTML = template + table.innerHTML;
@mithunkumars60973 жыл бұрын
add a new row to the top of the table below the header row.
@KodeBaseChannel3 жыл бұрын
did you try the solution mentioned above?
@mithunkumars60973 жыл бұрын
Yes, but data insert top of the table
@mithunkumars60973 жыл бұрын
I want row insert header first row
@ashifahamed99162 жыл бұрын
grate Thanqu sir
@antoniostarinec8079 Жыл бұрын
Thank you so much, how can i delete a row using similar code?
@KodeBaseChannel Жыл бұрын
It will be great if you can provide some unique id to a row.. such #row-1, #row-2.... while adding rows... now whenever you want to delete a particular row.. just select it by ID and call remove() method.
@TadivakaYogitaJE4 жыл бұрын
Is that template one javascript only??
@kamalj42723 жыл бұрын
What is that after template =?
@PhucPham-my2qb3 жыл бұрын
i'm looking for a video about deleting or adding columns to the table :((
@shrutipathak41332 жыл бұрын
pls share how to add complete row from one table to another dynamically using js. Pls help
@shilpachauhan9178 Жыл бұрын
first It was not working but after pasting from source code I found that I didn't put template literals in js and that was the reason of not working.
@KodeBaseChannel Жыл бұрын
Glad, you figured it out.
@lagajjar4 жыл бұрын
Supper
@ipushyouswallow27263 жыл бұрын
makes me hungry
@shirishcin Жыл бұрын
looked very promising until i coded it all as done in the video but click on add button does absolutely nothing.