Advertisement
Guest User

Untitled

a guest
Jul 12th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. jQuery(document).ready(function($)
  2. {
  3.     // trova il bottone  o elemento html a cui agganciare l'evento
  4.     $("a[href$='rent-car']").on('click', function(event)
  5.     {
  6.         event.preventDefault();
  7.         $.fancybox.open( $('.wpcf7'),
  8.         {
  9.             touch: false,
  10.             autoSize : false,
  11.             width: "50%",
  12.             height: "auto",
  13.             hideScrollbar: false,
  14.         });
  15.     });
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement