Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 346 Bytes

how-to-put-your-own-javascript.md

File metadata and controls

17 lines (13 loc) · 346 Bytes

How To Put Your Own Javascript

Open the module controller. Find $this->script_js in cbInit() method.

$this->script_js = "
  $(function() {
     //Your custom javascript/jquery goes here
  });
";

What's Next

Table Of Contents