Invalid Argument Error in Jquery gzoom plugin -


i using jquery plugin named jquery gzoom. it's nice script when test in ie. script show invalid argument error. error shows in ie.

i wondering if can figure in script cause error.

plugin page: http://lab.gianiaz.com/jquery/gzoom/index_it.html

thanks in advance.

the script loading fine on browsers. invalid argument appear when drag slider towards zoomin in ie. if test plugin in in ie, see error. error not seem affect functionality , appear in ie, install firebug lite, still can't clear error message.

what did it.

put following code in master page,

<script type="text/javascript" language="javascript" src="../scripts/jquery-1.3.2.min.js"></script> <script type="text/javascript" src="../scripts/ui.core.min.js"></script> <script type="text/javascript" src="../scripts/ui.slider.min.js"></script> <script type="text/javascript" src="../scripts/jquery.gzoom.js"></script> <script type="text/javascript" src="../scripts/jquery.mousewheel.js"></script>   <script type= "text/javascript">       $(document).ready(function(arg) {       $("#zoom01").gzoom({        sw: 312,         sh: 312,         lw: 930,         lh: 930,         loadercontent: "&nbsp;"        });      });  </script> 

and following code in content page want image zoom in , out.

<div class="item_zoom">        <div id="zoom01" class="zoom">                  <asp:image id="testimag" imageurl="~/images/7409.jpg" runat="server" alternatetext="item image"/>    </div>         </div> 

Comments

Popular posts from this blog

c++ - Convert big endian to little endian when reading from a binary file -

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

unicode - Are email addresses allowed to contain non-alphanumeric characters? -