jQuery(document).ready(function($) { /*$('a.vcfoobox').attr('target', 'foobox'); $('a.vcfoobox').attr('data-width', '985'); $('a.vcfoobox').attr('data-height', '600');*/ jQuery('a.vcfoobox, li.vcfoobox a').each( function() { jQuery(this).on("click", function() { var that = this; jQuery(that).colorbox({ slideshow :false,current:'',speed:300,innerWidth:"1150px",innerHeight:"720px",initialWidth:"30%",initialHeight:"40%",maxWidth:"100%",maxHeight:"100%",opacity:0.8,iframe:true, onComplete: function(){ //jQuery("input[type='text']:first").focus(); } }); }); }); });