Advertisement
Remote

Untitled

Feb 1st, 2014
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. #hide-slide {
  2. display:none;
  3. }
  4. ------------------------------------
  5. <div id=hide-slide>
  6. <?php the_content(); ?>
  7. </div>
  8. ------------------------------------
  9. <script>
  10. jQuery(document).ready(function($) {
  11. $('body').each(function() {
  12. var imageUrl = $('#hide-slide').find(">:first-child").attr('src');
  13. $(this).css('background-image', 'url(' +imageUrl+ ')');
  14. });
  15. });
  16. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement