there is a little error in php
- 'priiority'=>3
these variables doesn't exist
- data:{act:act,id:id,priority:priority},
try this:
- $.ajax({
- type:'post',
- url:'next_prev.php',
- dataType: 'json',
- cache: false,
- success:function(data){
- $('#content').html(data.content);
- $('#priority').html(data.priority);
- $('#id').html(data.id);
- }
- });