I'm trying to work with jQuery waterfall to show data 3 column, but it is not working.
On the head html I added a script which loads
https://github.com/dfcreative/jquery.waterfall
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js?ver=1.3.2" type="text/javascript">
<script src="/themes/classic/js/zepto.js" type="text/javascript">
<script src="/themes/classic/js/jquery.waterfall.js" type="text/javascript">
The page also has a script function:
<script type="text/javascript">
$(function(){
$('.some-container').waterfall({
autoresize: true
})
})
</script>
I want to show data :
<div class="waterfall">
<div>hello data 1</div>
<div>
hello data 2
hello data 2
</div>
<div>
hello data 3
hello data 3
hello data 3
</div>
<div>
hello data 4
hello data 4
hello data 4
hello data 4
</div>
<div>
hello data 5
hello data 5
hello data 5
hello data 5
hello data 5
</div>
</div>
I hope you can help me to show the data in 3 columns with jQuery waterfall. Thank you very much!