Hello i finally able to use Elastic CSS in joomla. since Joomla's core
using mootools, elastic has a simple issue in its core code.
in joomla, you can't use $() selector as it registered with mootools
by default, instead you should use jQuery() for selector.
Solution:
1. so in elastics.js you should use find & replace in your text editor
and change '$(' to 'jQuery('
2. after load jquery.js.. don't forget to set jQuery.noConflict();
so in your header, you should write like this:
<script type="text/javascript" src="
http://ajax.googleapis.com/ajax/
libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript">
$.noConflict()
</script>
hope this info can be usefull for Elastic CSS user that going to write
joomla template...
for fernando and other elastic CSS team:
i suggest you release elastic.js using jQuery() format instead of $()
as jQuery() is a compatible format and will make elastic css
compatible with other javascript framework...