$("#slideshow").click(function() {
$("#content").fadeOut(function() {
$(this).load('<?php $this->load->view("slideshow"); ?>', function() {
$(this).fadeIn()
});
});
});
When I run the above code in Ci, CodeIgniter pends the 'slideshow' view to the beginning of the document. I need it to only display when the id of 'slideshow' is clicked. This code snippet usually works, but idk why it's acting funny now. Any ideas?
slideshowview?