Hi Jason,
Thanks you very much for your reply. I already tried using javascript and jquery but not get any success. My code i not even able to get any form field. I am suing something like:
-
<script type="text/javascript">
-
$jQ(document).ready(function(){
-
var country=document.getElementById("#Country");
-
alert(country);
-
country.change(function() {
-
alert( $jQ(this).val() ); // or $(this).val()
-
-
-
});
-
});
-
</script>
From the 4th line, in Alert I am gettinh null, which means my code is getting executed before form loading. As per my understanding, Mareto also load form 2.0 dynamicaly using javascript. This might be causeing problrm. It will be very helpful for me if you can review my code above and let me know what I am missing here.