Advertisement
Guest User

custom-script.js

a guest
Jul 24th, 2012
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <?php
  2. function my_scripts_method() {
  3. wp_enqueue_script(
  4. 'custom-script',
  5. get_template_directory_uri() . '/js/custom_script.js',
  6. array('jquery')
  7. );
  8. }
  9. add_action('wp_enqueue_scripts', 'my_scripts_method');
  10. ?>
  11.  
  12. custom-script.js
  13. jQuery(document).ready(function() {
  14. jQuery("table").each(function()
  15. // do stuff
  16. alert ("hello Holly");
  17. )};
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement