In page I have excerption post with "read more" at end of excerption, so I try to replace content of div which contain excerption with full length of post with click on "read more". When click on "read more" nothing happen on click event. Here is peace of code in my function.php
if ($show_more_tag) {
$excerpt = $excerpt.' <a class="more-link" href="'.$perma_link.'">'.$more_tag.'</a>';
/* JQuery Start*/
echo '<script type="text/javascript">
$(".more-link").click(function(event) {
$(this).parent("div").load($(this).attr("href")); //load the data
event.preventDefault(); // prevent the browser from following the link
});
</script>';
/* JQuery End */
}
Where is mistake? Please help this is my first try to make something for web.
THANKS ALL OF YOU! This is code which work for me:
<script type="text/javascript">
$(document).ready(function()
{
$('.more-link').click(function(event)
{
event.preventDefault();
$(this).parents('div:eq(0)').load($(this).attr('href') + ' #container', function()
{
$('#container .PicturePlaceHolder a').each(function(index, el)
{
$(el).addClass('fancybox');
});
$('#container .fancybox').fancybox(
{
'transitionIn' : 'elastic',
'transitionOut' : 'elastic',
'centerOnScroll': 'true',
'cyclic' : 'true'
});
});
});
});
</script>
$(document).readycall? – jaudette Dec 18 '12 at 12:21</body>. – qwerty Dec 18 '12 at 12:25