I need to refresh div contents with single php pages via jQuery.
Without CodeIgniter it works in jQuery like this:
$(".myDIV").load("my_page.php");
As I am using CodeIgniter I tried to solve it with setting the base_url but it does not work:
$(".myDIV").load("<?php echo base_url()."application/views/my_page.php"; ?>");
How do I call the include request via jQuery correctly?
<?php echo base_url()."/my_page"; ?>or something.