Last active
December 21, 2015 14:09
-
-
Save yratof/6317935 to your computer and use it in GitHub Desktop.
Get content from product page, put it on normal page.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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