CSS
[cc lang=’css’ lines=”30″]/* Begin Send a Friend, Schedule forms */ #armadillo-schedule-form2, #armadillo-friend-form2 { display: none; background-color: #fff } #armadillo-schedule-form2 label, #armadillo-schedule-form2 input, #armadillo-friend-form2 label, #armadillo-friend-form2 input { display: block; } #armadillo-schedule-form2 input.text, #armadillo-schedule-form2 textarea, #armadillo-friend-form2 input.text, #armadillo-friend-form2 textarea { margin-bottom: 12px; padding: 0.4em; width: 95%; } #armadillo-shcedule-form2 fieldset, #armadillo-friend-form2 fieldset { border: 0 none; margin-top: 25px; padding: 0; } #armadillo-schedule-form2{ max-width: 450px; padding: 5px 10px 5px 10px; } #formvehicletestdrive input { float: left; } #formvehicletestdrive button { float: right; margin-right: 12px; } #armadillo-friend-form2{ max-width: 420px; padding: 5px 5px 5px 10px; } #formtellafriend label { clear: left; } #formtellafriend input { float: left; } #formtellafriend button { float: right; margin-right: 12px; } /*End VDP send a friend, Schedule forms*/[/cc]
JAVA SCRIPT BELOW
[cc lang='javascript' lines="100"]/* Adds Lightbox_me */ /* JS */ var js1 = document.createElement('script'); js1.src = 'http://js.s3.dealertrend.com.s3.amazonaws.com/lightbox_me/jquery.lightbox_me.js'; document.body.appendChild(js1); jQuery(document).ready(function(){ if (jQuery('#dealertrend-inventory-api #armadillo-detail').length){ jQuery('#formvehicletestdrive fieldset').append(''); jQuery('#formvehicletestdrive fieldset').append(''); jQuery('#armadillo-schedule').click(function(){ jQuery('#armadillo-schedule-form').attr('id','armadillo-schedule-form2'); var testdrive_form_clone = jQuery('#armadillo-schedule-form2').clone(); testdrive_form_clone.lightbox_me({ centered: true, closeSelector: ".close-light", destroyOnClose: true, onLoad: function() { testdrive_form_clone.find('input:first').focus() }, onClose: function() { testdrive_form_clone.remove(); } }); }); jQuery('#formtellafriend fieldset').append(''); jQuery('#formtellafriend fieldset').append(''); jQuery('#armadillo-friend').click(function(){ jQuery('#armadillo-friend-form').attr('id','armadillo-friend-form2'); var friend_form_clone = jQuery('#armadillo-friend-form2').clone(); friend_form_clone.lightbox_me({ centered: true, closeSelector: ".close-light", destroyOnClose: true, onLoad: function() { friend_form_clone.find('input:first').focus() }, onClose: function() { friend_form_clone.remove(); } }); }); } }); [/cc]