2 replies
Would it be illegal to make a plugin for wordpress that has jQuery? For example, the post list tabs or features gallery?
#jquery #question
  • Profile picture of the author Emilian
    What does this have to do with jQuery?

    You can make whatever plugin you want that has jQuery in it. Commercial or not.
    {{ DiscussionBoard.errors[161839].message }}
  • Profile picture of the author Robert Plank
    You can make a WP plugin that uses jQuery, in fact, you can do:

    <?php wp_enqueue_script('jquery'); ?>

    And not even have to include jQuery yourself, it uses the jQuery bundled with WordPress.

    Just make sure you use your selectors like jQuery('something') instead of $('something') to avoid conflicts with scriptaculous.
    {{ DiscussionBoard.errors[174994].message }}

Trending Topics