+ 1
how can I delete an information from a website through coding
still learning web development guys help
3 Réponses
+ 3
As alternative to the css method stated by Rstar (wich doesn't technically "delete" the information from the page content but only hide it), you can use JS to select an element and remove it... or select the element and change it's innerHTML or innerText property to remove part of it.
https://developer.mozilla.org/en-US/docs/Web/API/Node/removeChild
+ 5
You can hide it by changing css attribute display of the element that you want to hide
display:none;
https://www.w3schools.com/jsref/prop_style_display.asp
0
Visph I think I can try that buddy