Hi Everyone,
Can you point out what could be wrong in this code? We would like to populate a text field namedTitle and save the list item when the button is clicked. Also, not sure how to reference the button correctly so here is the buttons property. Please advise.
<script type="text/javascript">
$(document).ready(function () {
$("select[Title='Submit']").click(function(){
$("input[title='Title']").val("Submitted");
}};
</script>
,
Thanks,