Title: jquery &amp; css together
Last modified: May 28, 2021

---

# jquery & css together

 *  Resolved [futureyoon](https://wordpress.org/support/users/futureyoon/)
 * (@futureyoon)
 * [5 years ago](https://wordpress.org/support/topic/jquery-css-together/)
 * Hi
 * Is it possible to put jquery and css together in single snippet?
    If so, how 
   would the sample code look like?
 * Jquery sample
    jQuery(document).ready(function() { // xxxxxx });
 * CSS sample
    .activity-content { margin-top: 10px; }
 * Please guide me.
    Thank you!

Viewing 1 replies (of 1 total)

 *  Plugin Author [Shea Bunge](https://wordpress.org/support/users/bungeshea/)
 * (@bungeshea)
 * [4 years, 10 months ago](https://wordpress.org/support/topic/jquery-css-together/#post-14745376)
 * It’s absolutely possible! Just need to include both `<script>` and `<style>` 
   sections:
 *     ```
       add_action( 'wp_head', function () { ?>
       <script>
   
       jQuery(document).ready(function() {
       // xxxxxx
       });
   
       </script>
       <style>
   
       .activity-content {
       margin-top: 10px;
       }
   
       </style>
       <?php } );
       ```
   
 * Let us know if you have any follow-up questions.

Viewing 1 replies (of 1 total)

The topic ‘jquery & css together’ is closed to new replies.

 * ![](https://ps.w.org/code-snippets/assets/icon.svg?rev=2148878)
 * [Code Snippets](https://wordpress.org/plugins/code-snippets/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/code-snippets/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/code-snippets/)
 * [Active Topics](https://wordpress.org/support/plugin/code-snippets/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/code-snippets/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/code-snippets/reviews/)

## Tags

 * [css](https://wordpress.org/support/topic-tag/css/)
 * [jquery](https://wordpress.org/support/topic-tag/jquery/)

 * 1 reply
 * 2 participants
 * Last reply from: [Shea Bunge](https://wordpress.org/support/users/bungeshea/)
 * Last activity: [4 years, 10 months ago](https://wordpress.org/support/topic/jquery-css-together/#post-14745376)
 * Status: resolved