Reading field with javascript 9 years ago1TopicHow can you with javascript when the page loads, a field to query whether there what is entered. Ness 7 years ago0Level 1 Hi Paulsche, The code below will catch the value of a field at the page loading and will be displayed. Is that what you needed ?$(document).ready(function(){ var fieldContent; fieldContent = $("#field_name").val(); alert(fieldContent); });