If I have <div id="name1"> I can change the id to something else using:
<script>
document.getElementById("name1").id="name2";
</script>
What can I do if I just want to remove the id and just have <div>? Would I use:
<script>
document.getElementById("name1").id="";
</script>
Or would that just set the div to <div id="">?