jquery load function not working

Posted by pradeep on Stack Overflow See other posts from Stack Overflow or by pradeep
Published on 2010-06-09T11:36:35Z Indexed on 2010/06/09 12:12 UTC
Read the original article Hit count: 165

Filed under:
function newPage(pagenum)
{
  /* load page default from server - pass product name */
  $('#data').html("<div id='response'>Loading.....</div>").load(
    '/college/college_change.php',
    { product:'college',
      city:"<?php echo $city ?>",
      university:"<?php echo $university ?>",
      programmes:"<?php $programmes ?>",
      type:"<?php echo $type ?>",
      entrance_exams:"<?php echo $entrance_exams ?>",
      pagenum:pagenum
    });
}

I am using this load function, it works well in most browsers, but in IE it does not load the data.

© Stack Overflow or respective owner

Related posts about jQuery