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> Quote Link to comment 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> Quote Link to comment 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! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.