1) Script Title: Ajax Tabs Content Script (v 2.2)
2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...axtabscontent/
3) Describe problem:
I have sucessfully implemented the script on my site
http://www.ayonline.co.uk
I use it to pull in content for the RSS news and also the Leisure tabs further down such as jobs and recipe.
All is OK with that part in all browsers (thanks for a good script)
PROBLEM :
I used the onajaxpageload:function....... to implement a scroller for my RSS information.
On another page which i am still building I use the payment tabs info to update the page with the dynamic information entered by the site visitor.
This all works fine in browsers EXCEPT Internet Explorer.
The onajax load simply does not respond.
I have commented off my code and simply placed an alert box to see if stupid IE would display that but noit did not. (FF and all the other browsers are OK)
REQUEST : Please can someone suggest a solution for me
the code is below....
Code:onajaxpageload:function(pageurl){ //PUBLIC Event handler that can invoke custom code whenever an Ajax page has been fetched and displayed //do nothing by default switch (pageurl){ case 'homeContentTabs/bbcRSS.php': initializemarquee22(); break; case 'homeContentTabs/localRSS.php': initializemarquee(); break; case 'homeContentTabs/sportRSS.php': initializemarquee33(); break; case 'paymentTabs/cash.html': updatePayCash(); break; case 'paymentTabs/cheque.html': updatePayCheque(); break; case 'paymentTabs/creditDebit.html': updatePayCredit(); break; case 'paymentTabs/myPaypal.html': updatePayPaypal(); break; } //initializemarquee(); },
I used the correct call for the ajax I probably did not need to include it but I have (this is from the payment page which I am still building)
Code:<ul> <li class="listGap"><a href="paymentTabs/cash.html" rel="PaymentTabCont">Cash</a></li> <li class="listGap"><a href="paymentTabs/cheque.html" rel="PaymentTabCont">Cheque</a></li> <li class="listGap"><a href="paymentTabs/creditDebit.html" rel="PaymentTabCont" class="selected">Debit credit card</a></li> <li><a href="paymentTabs/myPaypal.html" rel="PaymentTabCont">Paypal</a></li> </ul> <div id="PaymentTabCont" class="textAdjust"> </div>
Thank in advance for your help it is so much appreciated



it did not. (FF and all the other browsers are OK)
Reply With Quote
Bookmarks