Hello i have a problem in creating the WordPress plugins..
I need to include the <script>...</script>
in my plugins, but it loaded above the tag.
<script>window.jQuery || document.write('<script src="http://mydomain/wp-content/plugins/myplugins/js/vendor/jquery-1.9.1.min.js"><\/script>')</script>
I need to load it before </body>
tag in HTML.
I was try it using wp_register_script and wp_enqueue_script, but it the script load like this
<script type='text/javascript' src='http://mydomain/wp-content/plugins/myplugins/js/vendor/jquery-1.9.1.min.js?ver=3.6.1'></script>
So, how I load it between <script>...</script>
code to make output like this
<script>window.jQuery || document.write('<script src="http://mydomain/wp-content/plugins/myplugins/js/vendor/jquery-1.9.1.min.js"><\/script>')</script>
Thank you...