Last active
August 29, 2015 14:01
-
-
Save erezLieberman/fb078b7eb622fbd27feb to your computer and use it in GitHub Desktop.
add script.js to wp theme
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| //include js to theme | |
| function theme_js(){ | |
| global $wp_scripts; | |
| wp_enqueue_script( 'script_js' , get_stylesheet_directory_uri().'/js/script.js', array('jquery') ,'' , true ); | |
| } | |
| add_action( 'wp_enqueue_scripts' , 'theme_js'); | |
| ?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function($) { | |
| $(document).ready(function(){ | |
| console.log('wooow its work!!'); | |
| $( window ).resize(function() { | |
| //on resize code | |
| }) | |
| if($(window).width() > 768){ | |
| //responsive code | |
| } | |
| //end of document.ready function - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - | |
| }); | |
| $( window ).load( function(){ | |
| //end of window.load function - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - | |
| }); | |
| })(jQuery); | |
| //ie10 hacks | |
| var doc = document.documentElement; | |
| doc.setAttribute('data-useragent', navigator.userAgent); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment