Advertisement
Guest User

Untitled

a guest
Jul 25th, 2017
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. wp_enqueue_script('slider', plugins_url( 'slider.js', __FILE__ ) );
  2.  
  3. $(document).ready(function () {
  4. alert("alert");
  5. });
  6.  
  7. wp_deregister_script('jquery');
  8. wp_register_script('jquery', "http" . ($_SERVER['SERVER_PORT'] == 443 ? "s" : "") . "://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js", false, null);
  9. wp_enqueue_script('jquery');
  10.  
  11. wp_enqueue_script( 'slider', plugins_url( 'slider.js', __FILE__ ),array('jquery') );
  12.  
  13. (function($) {
  14. $(function() {
  15. // more code using $ as alias to jQuery
  16. });
  17. })(jQuery);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement