I have the following call that just does not work in ie7 or 8, but is excellent in everything else!
<script> $('#wishlist_icon').load('/add_wishlist.php',{ userfromcookie:"<? echo $userfromcookie; ?>", PRid:"<? echo $PRid; ?>", cat_id:"<? echo $cat_id; ?>", item:"<? echo $title2; ?>" }); </script>
I also tried the following (adding a random number to the URL) that didn't fix the problem:
$random_num_for_ie = rand(5, 1500); <script> $('#wishlist_icon').load('/add_wishlist.php?num_ie=<? echo $random_num_for_ie; ?>',{ userfromcookie:"<? echo $userfromcookie; ?>", PRid:"<? echo $PRid; ?>", cat_id:"<? echo $cat_id; ?>", item:"<? echo $title2; ?>" }); </script>
Any ideas how I can make this work an important part of the page.
Darren sweeney
source share