OP Taze Üye
Teşekkür Sayısı: 0
2 mesaj
Kayıt Tarihi:Kayıt: Eyl 2008
Aşağıda Yazdığım kodları veri.html diye kaydettim firefoxta istediğim sonucu alıyorum ama internet explorerde "null null veya bir nesne değil" diye bir hata ile karşılaşıyorum ve veri almıyor dosya nedir bu internet explorerde çıkan hata bir türlü çözemedim. kısacası internet explorer de çalışmıyor
- [ Tüm kodu seç ] [ Yeni Pencerede Göster ]
<script src="http://www.vestel.com.tr/msib20/tr/js/swfobject-1.5.pack.js" type="text/javascript"></script> <script src="http://www.vestel.com.tr/msib20/tr/js/jquery-1.2.1.pack.js" type="text/javascript"></script> <body> <table id="layout"> <tr> <td class="wrapper-container"> <table width="632" height="436" id="wrapper"> <tr> <td width="633" align="center" class="right"> <table width="510" style="HEIGHT:100%" class="homeContentContainer" align="center"> <tr> <td width="500" valign="top"> <table class="widthBig"> <tr> <td height="0"></td> </tr> <tr> <td><!-- Main Flash --> <div id="divMainFlash"></div> </td> </tr> <tr> <td height="10"></td> </tr> </table> </td> </tr> </table> </td> </tr> <tr> <td colspan="2" class="foother"> <!-- FOOTER --> <!-- END FOOTER --> </td> </tr> </table> </td> <td class="banner-container"> <!-- BANNERCONTAINER --> <!-- END BANNERCONTAINER --></td> </tr> </table> <script language="javascript"> $(document).ready(function(){ var soMain = new SWFObject('http://www.vestel.com.tr/msib20/tr/swf/banners/container.swf','swfMain','498','385','7'); soMain.addParam('quality','high'); soMain.addParam('align','middle'); soMain.addParam('play','true'); soMain.addParam('loop','true'); soMain.addParam('scale','showall'); soMain.addParam('wmode','transparent'); soMain.addParam('devicefont','false'); soMain.addParam('id','swfMain'); soMain.addParam('bgcolor','#000000'); soMain.addParam('name','swfMain'); soMain.addParam('menu','false'); soMain.addParam('allowFullScreen','false'); soMain.addParam('allowScriptAccess','sameDomain'); soMain.addParam('salign',''); soMain.addParam('base','.'); soMain.write('divMainFlash'); }); $(document).ready(function(){ var soAccordion = new SWFObject('http://www.vestel.com.tr/msib20/tr/swf/accordion/accordion_panel.swf','swfAccordion','232','170','7'); soAccordion.addParam('quality','high'); soAccordion.addParam('align','middle'); soAccordion.addParam('play','true'); soAccordion.addParam('loop','true'); soAccordion.addParam('scale','showall'); soAccordion.addParam('wmode','transparent'); soAccordion.addParam('devicefont','false'); soAccordion.addParam('bgcolor','#000000'); soAccordion.addParam('name','swfAccordion'); soAccordion.addParam('menu','false'); soAccordion.addParam('allowFullScreen','false'); soAccordion.addParam('allowScriptAccess','sameDomain'); soAccordion.addParam('salign',''); soAccordion.addParam('base','.'); soAccordion.write('divAccordionFlash'); }); function mycarousel_initCallback(carousel) { $('.jcarousel-control a').bind('click', function() { carousel.scroll(jQuery.jcarousel.intval(jQuery(this).text())); return false; }); $('.jcarousel-scroll select').bind('change', function() { carousel.options.scroll = jQuery.jcarousel.intval(this.options[this.selectedIndex].value); return false; }); $('#mycarousel-next').bind('click', function() { carousel.next(); return false; }); $('#mycarousel-prev').bind('click', function() { carousel.prev(); return false; }); }; // Ride the carousel... $(document).ready(function() { $("#mycarousel").jcarousel({ scroll: 1, initCallback: mycarousel_initCallback, // This tells jCarousel NOT to autobuild prev/next buttons buttonNextHTML: null, buttonPrevHTML: null }); $("#tabs").css("background","transparent url(http://www.vestel.com.tr/msib20/tr/img/bg/encok.gif) no-repeat scroll 0px -18px"); $("#tab1").click(function(){ $("#tabs").css("background-position","0px 1px"); $("#encoksatan").css("display","block"); $("#encokziyaret").css("display","none"); }); $("#tab2").click(function(){ $("#tabs").css("background-position","0px -18px"); $("#encoksatan").css("display","none"); $("#encokziyaret").css("display","block"); }); }); </script> </body> </HTML>