SyntaxFix
Write A Post
Hire A Developer
Questions
You are using jQuery(document).ready(function($) {} means here you are using jQuery instead of $. So to resolve your issue use following code.
jQuery(document).ready(function($) {}
jQuery
$
jQuery("#submittername").text(submitter_name);
This will resolve your problem.