Skip to content

Instantly share code, notes, and snippets.

@yratof
Last active December 21, 2015 14:09
Show Gist options
  • Save yratof/6317935 to your computer and use it in GitHub Desktop.
Save yratof/6317935 to your computer and use it in GitHub Desktop.
Get content from product page, put it on normal page.
<script>
jQuery(document).ready(function($) {
$('.shit-<?php the_ID(); ?>').click(function(){
$.get("<?php echo get_permalink( $post->ID ); ?>", function(data){
$('.iframeArea').empty();
$('#product-<?php the_ID(); ?>', data).appendTo('.iframeArea');
});
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment