Hi

I'm trying to use the Ajax Queue plugin with the following code:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://
www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml";>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script type="text/javascript" src="js/jquery-1.2.1.js"></script>
<script type="text/javascript" src="js/plugins/jquery.ajaxQueue.js"></
script>
<script type="text/javascript">
jQuery(function(){
        $.ajaxQueue({
                url: '/inc/inc.text.html',
                type: 'GET',
                success: function(data){
                        $('body').html(data);
                }
        });

        $.ajaxQueue({
                url: '/inc/inc.text2.html',
                type: 'GET',
                success: function(data){
                        $('body').html(data);
                }
        });
});
</script>

</head>

<body>
</body>
</html>


But everytime it runs I get an error saying 'jQuery.dequeue is not a
function' and doesn't implement the second part to the queue.  Any
ideas?

Reply via email to