0

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...

7
  • you need to print script code on webpage? Commented Oct 17, 2013 at 11:39
  • @PragneshChauhan I don't understand what is print script code? Commented Oct 17, 2013 at 11:40
  • I means you need row output of code that you have writen in script Commented Oct 17, 2013 at 11:44
  • @PragneshChauhan any sample? if you have, please give me the links.. thank you Commented Oct 17, 2013 at 11:45
  • stackoverflow.com/questions/19263390/… Commented Oct 17, 2013 at 11:51

2 Answers 2

0

add js like below

wp_enqueue_script('myscript', 'wp-content/plugins/myplugins/js/vendor/jquery-1.9.1.min.js');
Sign up to request clarification or add additional context in comments.

Comments

0

One possibility is the following

wp_enqueue_script('myscript', 'wp-content/plugins/myplugins/js/vendor/jquery-1.9.1.min.js');

Anyways, I strongly recommend you to check out this answer: How do I add a simple jQuery script to WordPress?

In my case, I had to try with another solutions until I could figure it out.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.