Access our premium support and let us know your problems, we will help you solve them.

0
No products in the cart.

Forum Replies Created

Viewing 1 post (of 1 total)
  • Author
    Posts
  • in reply to: JQuery – $ is not defined #9728
    blankdevelop4life
    Participant
    1. Check the exact path of your jquery file is included.

      <script src="assets/plugins/jquery/jquery.min.js"></script>

    if you add this on bottom of your page , please all call JS function below this declaration.

    1. Check using this code test ,

      <script type="text/javascript">
      /***
       * Created by dadenew
       * Submit email subscription using ajax
       * Send email address
       * Send controller
       * Recive response
       */
      $(document).ready(function() { //you can replace $ with Jquery
      
        alert( 'jquery working~!' );
      });
      

    Peace!

Viewing 1 post (of 1 total)