Jump to content

[SOLVED] Condense multiple <script> tags


alex3

Recommended Posts

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

<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>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.