// SalesForce Contact Forms if (!function_exists('get_quote_form_shortcode')) { function get_quote_form_shortcode() { $theform = '
'; /* $(document).ready(function() { $("#form-submit").on("click", function(e) { var cnt = $(".require-one:checked").length; if (cnt < 1) { alert("Select at least 1 option"); e.preventDefault(); } else alert("Well Done!!!!"); }); }) */ return $theform; } add_shortcode('get_quote_form', 'get_quote_form_shortcode'); }