alex3 Posted May 3, 2009 Share Posted May 3, 2009 Hello, I have the <script></script> tags in my header, all javascript, all jQuery stuff, they're shown below. Is there a way I can condense them in to one? <script type="text/javascript"> $(function() { $("#dialog").dialog({ bgiframe: true, height: 270, width: 400, modal: true, buttons: { Close: function() { $(this).dialog('close'); } } }); }); </script> <script type="text/javascript"> $(function() { $('p.post a.lb').lightBox({ overlayBgColor: '#000', overlayOpacity: 0.35, }); }); </script> <script type="text/javascript"> $(document).ready(function() { $('#pobutton').click(function() { $('#povideo').toggle(2000); return false; }); }); </script> Link to comment https://forums.phpfreaks.com/topic/156639-solved-condense-multiple-tags/ Share on other sites More sharing options...
Ken2k7 Posted May 3, 2009 Share Posted May 3, 2009 <script type="text/javascript"> $(function() { $("#dialog").dialog({ bgiframe: true, height: 270, width: 400, modal: true, buttons: { Close: function() { $(this).dialog('close'); } } }); $('p.post a.lb').lightBox({ overlayBgColor: '#000', overlayOpacity: 0.35, }); $('#pobutton').click(function() { $('#povideo').toggle(2000); return false; }); }); </script> Link to comment https://forums.phpfreaks.com/topic/156639-solved-condense-multiple-tags/#findComment-825008 Share on other sites More sharing options...
alex3 Posted May 4, 2009 Author Share Posted May 4, 2009 Worked like a charm, knew it must be simple but couldn't find anything online. Thank you very much! Link to comment https://forums.phpfreaks.com/topic/156639-solved-condense-multiple-tags/#findComment-825531 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.