i placed a div with id = procedencia, then i tried to make a button to make it dissappear, with a function that said innerHTML = ''; here is all the code:
div:
Function:
div:
| Code: |
|
<div id="procedencia"> ... </div> |
Function:
| Code: |
| function hide_procedence(){
var div_pro = document.all.procedencia; div_pro.innerHTML = ''; } |
