File: /home/valuehealthquotes/public_html/lp2/old/form.php
<?php
//Ip Function
function getClientIp() {
$ipaddress = '';
if (getenv('HTTP_CLIENT_IP'))
$ipaddress = getenv('HTTP_CLIENT_IP');
else if(getenv('HTTP_X_FORWARDED_FOR'))
$ipaddress = getenv('HTTP_X_FORWARDED_FOR');
else if(getenv('HTTP_X_FORWARDED'))
$ipaddress = getenv('HTTP_X_FORWARDED');
else if(getenv('HTTP_FORWARDED_FOR'))
$ipaddress = getenv('HTTP_FORWARDED_FOR');
else if(getenv('HTTP_FORWARDED'))
$ipaddress = getenv('HTTP_FORWARDED');
else if(getenv('REMOTE_ADDR'))
$ipaddress = getenv('REMOTE_ADDR');
else
$ipaddress = 'UNKNOWN';
return $ipaddress;
}
?>
<!doctype html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-D05XGCGSRF"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-D05XGCGSRF');
</script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="css/styles.css">
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<link rel="style" href="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.mask/1.14.16/jquery.mask.min.js"></script>
<link rel="apple-touch-icon" sizes="180x180" href="images/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon-16x16.png">
<link rel="manifest" href="images/site.webmanifest">
<title>Getting Started - ValueHealth Quotes</title>
<style>
.error{
color:red;
@import url(http://fonts.googleapis.com/css?family=Source+Code+Pro:400|Roboto+Condensed:400,700);
/* Body - remove browser margin & set padding to accommodate for the fixed header bar */
body {
margin: 0;
/*padding-top: 89px;*/
background: #FEFEFE;
}
.wrapper {
margin: 0 auto;
width: 95%;
text-align: center;
}
/* Plugin Example Container */
.example {
width: 33%;
min-width: 400px;
padding: 15px;
display: inline-block;
box-sizing: border-box;
text-align: center;
}
.example:first-of-type {
position: relative;
bottom: 35px;
}
/* Example Heading */
.example h2 {
font-family: "Poppins", helvetica, arial, sans-serif;
font-weight:300;
font-size: 1.3em;
margin: 15px 0;
color: #4F5462;
}
.example input {
display: block;
margin: 0 auto 20px auto;
width: 150px;
padding: 8px 10px;
border: 1px solid #CCCCCC;
border-radius: 3px;
background: #F2F2F2;
text-align: center;
font-size: 1em;
letter-spacing: 0.02em;
font-family: "Poppins", helvetica, arial, sans-serif;
}
.example select {
padding: 10px;
background: #ffffff;
border: 1px solid #CCCCCC;
border-radius: 3px;
margin: 0 3px;
}
.example select.invalid {
color: #E9403C;
}
.example input[type="submit"] {
margin-top: 10px;
}
.example input[type="submit"]:hover {
cursor: pointer;
background-color: #e5e5e5;
}
/* Code Blocks */
pre.code-wrapper {
padding: 15px 30px;
margin-top: 20px;
background: #F4F6F4;
color: #393D3F;
text-align: left;
border: 1px solid #DCDFDC;
border-radius: 3px;
}
pre code {
font-family: 'Poppins', monospace, monospace;
font-weight: 400;
font-size: 14px;
}
/* Highlighted Code Blocks */
pre code span.highlight {
color: #EF6F6C;
}
div#speedbump {
display: none;
z-index: 9999;
position: fixed;
top: 0;
width: 100%;
background: #eeeeee;
}
#speedbump h4.modal-title {
text-align: center;
text-transform: uppercase;
color: #004795;
font-size:2.5em;
}
.modal-body p {
text-align:center;
font-size: 1em;
}
button.btn-modal:hover {
cursor: pointer;
}
button.btn-modal.btn-continue {
background-color: #8bc63e;
border: 0px;
margin: 1% 0;
}
button.btn-modal.btn-close {
background-color: inherit;
border: 1px solid #030000;
color: #030000;
font-weight: 400;
}
.modal-header .close {
font-size: 3.5em;
}
/* Media */
@media(max-width: 847px) {
.header-bar h1 {
text-align: center !important;
width: 100%;
}
.header-bar nav {
display: none;
}
.example:first-of-type {
bottom: 0;
}
}
@media(min-width: 848px) {
.header-bar nav {
display: block;
}
}
</style>
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-dark fixed-top">
<div class="container">
<a class="navbar-brand" href="index.html"><img height="30px;" src="images/logo.png"></a>
<div>
<span class="navbar-text navbar-contact navbar-toggle collapsed"><a href="tel:+18558056712"> Call Now: (855) 805-6712 </a></span>
<span><a class="navbar-contact-logo" href="tel:+18558056712"><i class="fas fa-phone"></i> (855) 805-6712</a></span>
</div>
</div>
</nav>
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-MWH78H7"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<!-- Page Content -->
<section class="py-5" id="about">
<div class="container">
<div class="row">
<div class="col">
<br>
<div class="wrap-box">
<div class="form-header">
<h3>Find Your Perfect Plan</h3>
<div class="row align-items-center">
<div class="col-md">
<h4><i class="far fa-check-square"></i> Zero Obligation</h4>
</div>
<div class="col-md">
<h4><i class="far fa-check-square"></i> Affordable Prices</h4>
</div>
<div class="col-md">
<h4><i class="far fa-check-square"></i> Trusted Providers</h4>
</div>
</div>
</div>
<form id="quoteWizard" name="quoteWizard" method="get" class="p-4" >
<div class="col-md pb-4">
<h4 class="text-left"> Cotact Information</h4>
</div>
<!--Get Client IP -->
<?php
$ip = getClientIp();
echo '<input name="IPAddress" type="hidden" value="' . $ip . '" />';
?>
<input type="hidden" name="CompanyId" id="CompanyId" value="16">
<div class="form-row">
<div class="form-group col-sm">
<input type="text" class="form-control" name="firstname" id="firstname" placeholder="First Name" required>
</div>
<div class="form-group col-sm">
<input type="text" class="form-control" name="lastname" id="lastname" placeholder="Last Name" required>
</div>
</div>
<br>
<div class="form-row">
<div class="form-group col-sm">
<input type="text" class="form-control" name="dateofbirth" id="datepicker" placeholder="Date of Birth" required>
</div>
<div class="form-group col-sm">
<select class="form-control" name="typeofplan" value="ind" required>
<option selected disabled hidden>Who Are We Looking For?</option>
<option value="ind">Just For Me</option>
<option value="ind1">Myself & Spouse/Child</option>
<option value="family">The Whole Family</option>
</select>
</div>
</div>
<br>
<div class="form-row">
<div class="form-group col-sm">
<input type="text" class="form-control bfh-phone" id="phone" name="phone" minlength="10" maxlength="10" placeholder="Phone Number" required>
</div>
<div class="form-group col-sm">
<input type="email" class="form-control" id="email" name="email" placeholder="Email Address" required>
</div>
</div>
<div class="col-md py-4">
<h4 class="text-left"> Address</h4>
</div>
<div class="form-group">
<input type="text" class="form-control" id="address" name="address" placeholder="Street Address" required>
</div>
<div class="form-row">
<div class="form-group col-sm">
<input type="text" class="form-control" id="zipCode" name="zip" onkeyup="zipCodeLookup(1);" placeholder="Zip" maxlength="5" required>
</div>
<div class="form-group col-sm">
<input type="text" class="form-control" name="city" id="city" placeholder="City" required>
</div>
<div class="form-group col-sm">
<input type="text" class="form-control" name="state" id="state" placeholder="State" required>
</div>
<div class="form-group col-sm-12 pt-4">
<!-- Button trigger modal -->
<button type="submit" id="submitButton" class="modalButton" data-toggle="modal" data-target="#myModal"><i class="fas fa-lock"></i> Submit</button>
</div>
</div>
</div>
<br>
<div class="modal" id="loadingModal">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Successs</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div class="thank-you-pop">
<img src="images/check-green-lime.png" alt="">
<h1>Thank You!</h1>
<p>Your submission is received and we will contact you soon</p>
</div> </div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</form>
<div class="appFooter">
<p>By entering a phone number and email address and submitting this form, you represent that you are at least 18 years old and agree to our
Privacy Policy and Terms of Use. You also authorize valuehealthquotes.com and/or its <a href="#partnerModal" style="color: #0031e3; font-style="italize" data-toggle="modal" date-target="partnerModal">marketing partners</a> to contact you for marketing/telemarketing
purposes at the number and address provided above, including your wireless number if provided, using live operators, automated telephone dialing systems,
pre-recorded messages, text messages and/or emails, even if the number you provide is on a state or Federal Do Not Call registry. You are not required to
consent as a condition of purchasing goods or services and may revoke consent at anytime. Value Health Quotes has the option to send communication such as
texting via a short code and will not allow third parties to send messages or communications on their behalf.</p>
<p>Value Health Quotes is an independent website and is not a federal or state Marketplace website. Value Health Quotes does not provide quotes or sell
insurance directly to consumers, is not affiliated with any exchange, and is not a licensed insurance agent or broker. Accordingly, you should not send
us (via mail or email) any sensitive information, including personal health information or applications. Any such communications will not be treated as
confidential and will be discarded, as, in offering this website, we are required to comply with the standards established under 45 CFR 155.260 to protect
the privacy and security of personally identifiable information.</p>
</div>
</div>
</div>
</div>
</section>
<div class="modal" tabindex="-1" role="dialog" id="partnerModal">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title text-center">Select Partners</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<ul style="list-style-type: none; margin: 0; padding: 0;">
<li>National Health Plans, LLC.</li>
<li>Alternative Alpha Health, LLC.</li>
<li>National Health Agents</li>
<li>Interstate Brokers of America</li>
<li>Fuego Leads, LLC.</li>
<li>Alliance National Health</li>
<li>New Age Health</li>
<li>Trusted Healthcare Providers, LLC.</li>
<li>America's Health Center, Inc.</li>
<li>America's Health Providers</li>
<li>Precision Insurance Providers, LLC.</li>
<li>Precision Healthcare Providers</li>
<li>Accu-Health Insurance Advisors, LLC.</li>
<li>HIC Marketing Group, LLC.</li>
<li>Get Me Healthcare</li>
</ul>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<footer>
<section>
<div class="container-fluid text-center">
<div class="row footer-bg">
<div class="col-sm">
<p>© ©Value Health Quotes 2019-2021 All Rights Reserved Powered by Precision Insurance Providers LLC | <span><a href="privacy-policy.html" style="text-decoration: none;">Privacy Policy</a></span></p>
</div>
</div>
</div>
</section>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.6-rc.1/js/select2.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-validate/1.19.1/jquery.validate.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-validate/1.19.1/additional-methods.min.js" integrity="sha256-vb+6VObiUIaoRuSusdLRWtXs/ewuz62LgVXg2f1ZXGo=" crossorigin="anonymous"></script>
<script src="https://kit.fontawesome.com/69fd8ad995.js" crossorigin="anonymous"></script>
<script type="text/javascript" src="js/zipCodeLookup.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<!-- Global site tag (gtag.js) - Google Ads: 867661804 -->
<script async src="https://www.googletagmanager.com/gtag/js?id=AW-867661804"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'AW-867661804');
</script>
<!--Form posting -->
<script>
/*-----------------------------------------------------------------------*/
/*---------------------------- Zip Code Lookup --------------------------*/
/*-----------------------------------------------------------------------*/
$('#zipCode').on("input ", function() {
var zipCode = $('#zipCode').val();
if (zipCode.length == 5) {
$.ajax({
type: 'GET',
url: 'https://ziplookup.visualyzers.com/Ziplookup?zipcode=' + zipCode,
success: function(results) {
if (!results) {
$('#errorZip').show();
$('#submitButton').prop("disabled ", true);
} else {
$('#city').val(results.city);
$('#state').val(results.state);
$('#errorZip').hide();
$('#submitButton').prop("disabled ", false);
}
}
})
}
});
function submitForm()
{
$('#submitButton').prop('disabled', true);
$('#loadingModal').modal('show');
$.ajax({
type: 'post',
dataType:'jsonp',
url: 'https://ushaleads.healthinsuranceguide.org/api/LeadAPI',
data: $('form').serialize(),
success: function () {
console.log('success');
window.location.href = "form-success.html";
},
error:function(){
console.log('Error');
window.location.href = "form-success.html";
}
})
};
$.validator.addMethod("dateRange", function(value, element, params) {
try {
var date = new Date(value);
if (date >= params.from && date <= params.to) {
return true;
}
} catch (e) {}
return false;
}, 'Invalid Date of Birth');
var fromDate = new Date("1900-01-01");
var toDate = new Date("2003-01-01");
$("#quoteWizard").submit(function(e) {
e.preventDefault();
}).validate({
rules:{
phone:{
required:true,
phoneUS:true,
minlength:10,
maxlength:10
},
firstname:{
required:true
},
lastname:{
required:true
},
dateofbirth:{
required:true,
date:true,
dateRange:{
from:fromDate,
to: toDate
}
},
typeofplan:{
required: true
},
email:{
required:true,
email:true
},
city:{
required:true
},
state:{
required:true
},
zip:{
required:true
}
},
messages: {
phone: {
required: "Please enter a valid phone number"
},
},
submitHandler: function(event)
{
submitForm();
}
});
</script>
<script>
/* FORM FIELD FUNCTIONS */
$(document)
.on('keydown', '.alpha', function(e) {
var a = e.key;
if (a.length == 1) return /[a-z]|\$|#|\*/i.test(a);
return true;
})
$(document)
.on('keydown', '.numer', function(e) {
var a = e.key;
if (a.length == 1) return /[0-9]|\$|#|\*/i.test(a);
return true;
})
// now the digit 0 on your mask pattern will be interpreted
// as valid characters like 0,1,2,3,4,5,6,7,8,9 and *
</script>
<script>
$('#datepicker').mask("99/99/9999", {placeholder:'MM/DD/YYYY'});
</script>
<script>
function getParameterByName(name, url) {
if (!url) url = window.location.href;
name = name.replace(/[\[\]]/g, '\\$&');
var regex = new RegExp('[?&]' + name + '(=([^&#]*)|&|#|$)'),
results = regex.exec(url);
if (!results) return null;
if (!results[2]) return '';
return decodeURIComponent(results[2].replace(/\+/g, ' '));
}
$('#city').val(getParameterByName('city'));
$('#state').val(getParameterByName('state'));
$('#zipCode').val(getParameterByName('zipCode'));
/*
* jQuery Date Dropdowns - v1.0.0
* A simple, customisable date select plugin
* https://github.com/IckleChris/jquery-date-dropdowns
* Made by Chris Brown
* Under MIT License
*/
!function(a,b,c,d){"use strict";function e(b,c){return this.element=b,this.$element=a(b),this.config=a.extend({},g,c),this.internals={objectRefs:{}},this.init(),this}var f="dateDropdowns",g={defaultDate:null,defaultDateFormat:"yyyy-mm-dd",displayFormat:"dmy",submitFormat:"yyyy-mm-dd",minAge:0,maxAge:120,minYear:null,maxYear:null,submitFieldName:"date",wrapperClass:"date-dropdowns",dropdownClass:null,daySuffixes:!0,monthSuffixes:!0,monthFormat:"long",required:!1,dayLabel:"Day",monthLabel:"Month",yearLabel:"Year",monthLongValues:["January","February","March","April","May","June","July","August","September","October","November","December"],monthShortValues:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],initialDayMonthYearValues:["Day","Month","Year"],daySuffixValues:["st","nd","rd","th"]};a.extend(e.prototype,{init:function(){this.checkForDuplicateElement(),this.setInternalVariables(),this.setupMarkup(),this.buildDropdowns(),this.attachDropdowns(),this.bindChangeEvent(),this.config.defaultDate&&this.populateDefaultDate()},checkForDuplicateElement:function(){return!a('input[name="'+this.config.submitFieldName+'"]').length||(a.error("Duplicate element found"),!1)},setInternalVariables:function(){var a=new Date;this.internals.currentDay=a.getDate(),this.internals.currentMonth=a.getMonth()+1,this.internals.currentYear=a.getFullYear()},setupMarkup:function(){var b,c;if("input"===this.element.tagName.toLowerCase()){this.config.defaultDate||(this.config.defaultDate=this.element.value),c=this.$element.attr("type","hidden").wrap('<div class="'+this.config.wrapperClass+'"></div>');var d=this.config.submitFieldName!==g.submitFieldName,e=this.element.hasAttribute("name");e||d?d&&this.$element.attr("name",this.config.submitFieldName):this.$element.attr("name",g.submitFieldName),b=this.$element.parent()}else c=a("<input/>",{type:"hidden",name:this.config.submitFieldName}),this.$element.append(c).addClass(this.config.wrapperClass),b=this.$element;return this.internals.objectRefs.pluginWrapper=b,this.internals.objectRefs.hiddenField=c,!0},buildDropdowns:function(){var a,b,c;return e.message={day:this.config.initialDayMonthYearValues[0],month:this.config.initialDayMonthYearValues[1],year:this.config.initialDayMonthYearValues[2]},a=this.buildDayDropdown(),this.internals.objectRefs.dayDropdown=a,b=this.buildMonthDropdown(),this.internals.objectRefs.monthDropdown=b,c=this.buildYearDropdown(),this.internals.objectRefs.yearDropdown=c,!0},attachDropdowns:function(){var a=this.internals.objectRefs.pluginWrapper,b=this.internals.objectRefs.dayDropdown,c=this.internals.objectRefs.monthDropdown,d=this.internals.objectRefs.yearDropdown;switch(this.config.displayFormat){case"mdy":a.append(c,b,d);break;case"ymd":a.append(d,c,b);break;case"dmy":default:a.append(b,c,d)}return!0},bindChangeEvent:function(){var a=this.internals.objectRefs.dayDropdown,b=this.internals.objectRefs.monthDropdown,c=this.internals.objectRefs.yearDropdown,d=this,e=this.internals.objectRefs;e.pluginWrapper.on("change","select",function(){var f,g,h=a.val(),i=b.val(),j=c.val();return(f=d.checkDate(h,i,j))?(e.dayDropdown.addClass("invalid"),!1):("00"!==e.dayDropdown.val()&&e.dayDropdown.removeClass("invalid"),e.hiddenField.val(""),f||h*i*j===0||(g=d.formatSubmitDate(h,i,j),e.hiddenField.val(g)),void e.hiddenField.change())})},populateDefaultDate:function(){var a=this.config.defaultDate,b=[],c="",d="",e="";switch(this.config.defaultDateFormat){case"yyyy-mm-dd":default:b=a.split("-"),c=b[2],d=b[1],e=b[0];break;case"dd/mm/yyyy":b=a.split("/"),c=b[0],d=b[1],e=b[2];break;case"mm/dd/yyyy":b=a.split("/"),c=b[1],d=b[0],e=b[2];break;case"unix":b=new Date,b.setTime(1e3*a),c=b.getDate()+"",d=b.getMonth()+1+"",e=b.getFullYear(),c.length<2&&(c="0"+c),d.length<2&&(d="0"+d)}return this.internals.objectRefs.dayDropdown.val(c),this.internals.objectRefs.monthDropdown.val(d),this.internals.objectRefs.yearDropdown.val(e),this.internals.objectRefs.hiddenField.val(a),!0===this.checkDate(c,d,e)&&this.internals.objectRefs.dayDropdown.addClass("invalid"),!0},buildBaseDropdown:function(b){var c=b;return this.config.dropdownClass&&(c+=" "+this.config.dropdownClass),a("<select></select>",{class:c,name:this.config.submitFieldName+"_["+b+"]",required:this.config.required})},buildDayDropdown:function(){var a,b=this.buildBaseDropdown("day"),d=c.createElement("option");d.setAttribute("value",""),d.appendChild(c.createTextNode(this.config.dayLabel)),b.append(d);for(var e=1;e<10;e++)a=this.config.daySuffixes?e+this.getSuffix(e):"0"+e,d=c.createElement("option"),d.setAttribute("value","0"+e),d.appendChild(c.createTextNode(a)),b.append(d);for(var f=10;f<=31;f++)a=f,this.config.daySuffixes&&(a=f+this.getSuffix(f)),d=c.createElement("option"),d.setAttribute("value",f),d.appendChild(c.createTextNode(a)),b.append(d);return b},buildMonthDropdown:function(){var a=this.buildBaseDropdown("month"),b=c.createElement("option");b.setAttribute("value",""),b.appendChild(c.createTextNode(this.config.monthLabel)),a.append(b);for(var d=1;d<=12;d++){var e;switch(this.config.monthFormat){case"short":e=this.config.monthShortValues[d-1];break;case"long":e=this.config.monthLongValues[d-1];break;case"numeric":e=d,this.config.monthSuffixes&&(e+=this.getSuffix(d))}d<10&&(d="0"+d),b=c.createElement("option"),b.setAttribute("value",d),b.appendChild(c.createTextNode(e)),a.append(b)}return a},buildYearDropdown:function(){var a=this.config.minYear,b=this.config.maxYear,d=this.buildBaseDropdown("year"),e=c.createElement("option");e.setAttribute("value",""),e.appendChild(c.createTextNode(this.config.yearLabel)),d.append(e),a||(a=this.internals.currentYear-(this.config.maxAge+1)),b||(b=this.internals.currentYear-this.config.minAge);for(var f=b;f>=a;f--)e=c.createElement("option"),e.setAttribute("value",f),e.appendChild(c.createTextNode(f)),d.append(e);return d},getSuffix:function(a){var b="",c=this.config.daySuffixValues[0],d=this.config.daySuffixValues[1],e=this.config.daySuffixValues[2],f=this.config.daySuffixValues[3];switch(a%10){case 1:b=a%100===11?f:c;break;case 2:b=a%100===12?f:d;break;case 3:b=a%100===13?f:e;break;default:b="th"}return b},checkDate:function(a,b,c){var d;if("00"!==b){var e=new Date(c,b,0).getDate(),f=parseInt(a,10);d=this.updateDayOptions(e,f),d&&this.internals.objectRefs.hiddenField.val("")}return d},updateDayOptions:function(a,b){var d=parseInt(this.internals.objectRefs.dayDropdown.children(":last").val(),10),e="",f="",g=!1;if(d>a){for(;d>a;)this.internals.objectRefs.dayDropdown.children(":last").remove(),d--;b>a&&(g=!0)}else if(d<a)for(;d<a;){e=++d,f=e,this.config.daySuffixes&&(f+=this.getSuffix(d));var h=c.createElement("option");h.setAttribute("value",e),h.appendChild(c.createTextNode(f)),this.internals.objectRefs.dayDropdown.append(h)}return g},formatSubmitDate:function(a,b,c){var d,e;switch(this.config.submitFormat){case"unix":e=new Date,e.setDate(a),e.setMonth(b-1),e.setYear(c),d=Math.round(e.getTime()/1e3);break;default:d=this.config.submitFormat.replace("dd",a).replace("mm",b).replace("yyyy",c)}return d},destroy:function(){var a=this.config.wrapperClass;if(this.$element.hasClass(a))this.$element.empty();else{var b=this.$element.parent(),c=b.find("select");this.$element.unwrap(),c.remove()}}}),a.fn[f]=function(b){return this.each(function(){if("string"==typeof b){var c=Array.prototype.slice.call(arguments,1),d=a.data(this,"plugin_"+f);if("undefined"==typeof d)return a.error("Please initialize the plugin before calling this method."),!1;d[b].apply(d,c)}else a.data(this,"plugin_"+f)||a.data(this,"plugin_"+f,new e(this,b))}),this}}(jQuery,window,document);
/*inicializar*/
$(document).ready(function() {
$("#example1").dateDropdowns(
//$("#example1 select").select2()
);
$("#example2").dateDropdowns({
submitFieldName: 'example2',
submitFormat: "dd/mm/yyyy"
});
});
</script>
<!--Start of Tawk.to Script-->
<script type="text/javascript">
var Tawk_API=Tawk_API||{}, Tawk_LoadStart=new Date();
(function(){
var s1=document.createElement("script"),s0=document.getElementsByTagName("script")[0];
s1.async=true;
s1.src='https://embed.tawk.to/605b8202167c2605c0bbe762/1f1in7n1c';
s1.charset='UTF-8';
s1.setAttribute('crossorigin','*');
s0.parentNode.insertBefore(s1,s0);
})();
</script>
<!--End of Tawk.to Script-->
</body>
</html>