i have a hidden element in html form
<input type="hidden" name="Something" id="Something" value="<?php echo "somevalue";?>"/>
and i have a javascript that changes that value , the question is which value vill the element get on post the "somevalue" or the javascript value
in the js function i have
<script>
function some(){
document.getElementById('Something').value="123";
}
</script>