Back to Top

How to Use Jquery in Joomla Module development

Updated 14 November 2018

Jquery really an awesome java-script library why we like this

1 – Easy DOM manipulation

2 – Easy Ajax

3 –  Browser compatibility and many more

but if you want to use jquery in joomla module development you can not use it directly , because joomla is based on mootools java-script library but thanks to jquery this awesome library has a mode “no conflict mode” . what you have to do is

Start your headless eCommerce
now.
Find out More

First define the noconflict() function

<script type=”text/javascript”>var $j = jQuery.noConflict();</script>

and after that change the $ of the jquery to the $j as showb below

<script type=”text/javascript”>

$j(document).ready(function(){

$j(‘ul.thumb li’).Zoomer({speedView:<?php echo $speedView; ?>,

speedRemove:<?php echo $speedRemove; ?>,

altAnim:true,

speedTitle:<?php echo $speedTitle; ?>,

width:'<?php echo $imagewidth.”px”; ?>’,

height:'<?php echo $imageheight.”px”; ?>’,

debug:false});

});

</script>

 

That’s it . Still you have any query or suggestion please drop a mail in our mailbox or just comment it out .enjoy 😉

 

. . .

Leave a Comment

Your email address will not be published. Required fields are marked*


Be the first to comment.

Back to Top

Message Sent!

If you have more details or questions, you can reply to the received confirmation email.

Back to Home