Posted on November 2, 2011 Posted Under Joomla, Just Blogging, Moo tools, Tips-n-Tricks
Nowadays, reducing web page size to improve performance or to save bandwidth while still maintaining a good website design has become a pain for smart web developers or designers. This is because with the latest technologies that surfaced in the recent years ( JS Libraries, CSS3, HTML 5, etc. ) , developers tend to add […]
<p>jQuery sets this paragraph’s color to red but MooTools sets the border color.</p> <script type="text/javascript" src="jquery-1.3.js"></script> <script type="text/javascript"> //no conflict jquery jQuery.noConflict(); //jquery stuff (function($) { $(‘p’).css(‘color’,’#ff0000′); })(jQuery); </script> <script type="text/javascript" src="moo1.2.js"></script> <script type="text/javascript"> //moo […]