**I have many separated paragraphs in one HTML page all of them have the same id **id=text** when I use the onmousemove event only the first paragraph can increase and decrease the font size not all of them although they have the same id .**
This is the javascript code:
function incfont(){
var t= document.getElementById('fontsize').value;
var x= document.getElementById('text');
x.style.fontSize = t+"px";
**Here are an example of paragraphs with the same id **
<p id="test">paragraph 1 </p>
<p id="test">paragraph 2 </p>