In some website pages, when i try to open the "View Source" with google chrome, and check the hidden values, I find out that the val is blank, but when i inspect the form, i can actually see the content of that hidden value,
for example, this site, when i try check the source i can't see the nid value,
I think it has something to do with this function,
<script type="text/javascript">
function upuid(a){
$('input[name="nid"]').val(a)
}
</script>
but I can't find where it is being called and what is the a parameter.
Thank you.