Need to change div width...client side

Is it possible to use a HTML5 number input box as a variable to change the width of a div?
How would this be done if possible.
I need to be able to adjust the width to less or more.

Solved it myself. I know it’s simple but the syntax always kills me.
check it out here… whatarethelotterynumbers.org
I get frustrated but like it when I figure this stuff out on my own.

For the benefit of others please explain how you managed to solve the problem.

I was just thinking, better go back and show my code for anyone else looking to do something similar.


function widen_content(){	
	w = document.getElementById('control').value;
	document.getElementById('content').style.width = (w + '%');
	
	}


“Control” represents the HTML5 numberbox.
“Content” is the div to be manipulated.
“w” is the variable and also represents the innerHTML.value of the numberbox.
Works really well.
Thanks for this site, I have learned much here.
Not bragging, I’m far from being a coder but I love the fact that I made my own sites (with help at first) but do about everything I need now.