I want to .load the php script every 10 seconds. The load code is not a problem, but in Wordpress all plugins use their own Jquery libraries, and if I just add the jquery google link:
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js" ></script>
the other plugins will crash.
I have the following code in my footer:
<?php
if ( is_user_logged_in() ) {
include 'completed.php';
}
?>
I want to include a jquery script so I can execute the following code:
<?php
if ( is_user_logged_in() ) { ?>
<div id="completed">
<script>
$(function(){
setInterval(function(){
$("#completed").load("completed.php");
}, 10 * 1000);
});
</script>
</div>
<?php } ?>
Do you think you can help me out?
But why won't you do use the built in jQuery in no-conflict mode so that nothing crashes.
Load the jquery from google ajax library in footer