i use such code to access item
function f(id){ $(\"#\"+id).val(); // with analogy $(\"#id item\") }
is it correct? is any other methods?<
You could use PureDom
function f(id){ return document.getElementById(id).value; }
Take that, jQuery!