Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #hide-slide {
- display:none;
- }
- ------------------------------------
- <div id=hide-slide>
- <?php the_content(); ?>
- </div>
- ------------------------------------
- <script>
- jQuery(document).ready(function($) {
- $('body').each(function() {
- var imageUrl = $('#hide-slide').find(">:first-child").attr('src');
- $(this).css('background-image', 'url(' +imageUrl+ ')');
- });
- });
- </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement