$(document).ready(function() { $(".template-selection").click( function(event) { var templateId = event.target.id.match(/\d/g).join(""); $("#template_id").val(templateId); $("#create_from_template_form").submit(); }); });