Add this script this will target your input type submit and set an attribute on it when page load.
<script>function functionAddAttribute(){
$("input:submit").attr("accesskey","g");
};
window.onload = functionAddAttribute;
</script>
<noscript>Your browser does not support JavaScript!</noscript>
Comments
Post a Comment