Plugins

The plugins site is currently in development.

We've been looking to provide a higher-quality, spam-free experience at the plugins site for some time, and a major error on our part forced us to shut down the current site before we could put the new one in place. We are developing a new site, and you can follow along with its development on GitHub. For more information about this transition, including steps you can take as a plugin author to prepare, please read our post about what's going on.

IE error on open new window in IE7


Project:GalleryView
Version:1.1
Component:Code
Category:support request
Priority:critical
Assigned:tomkure
Status:active
Description

Thanks for a great gallery

I am new to this gallery and java, so please bear with me for some silly question.

I am using GalleryView and is working perfectly in Firefox, but in IE it sucks.

I am using this code for filmstrip

while ( $i_rst = mysql_fetch_array($f_qry) ) {
    if ( $i_rst['picName'] != NULL ) {
      $path    = "{$i_rst['picPath']}{$i_rst['picName']}";
      $attrib  = "width=500,height=380,menubar=yes";
      $onClick = "onClick=\"window.open('{$path}','','{$attrib}')\"";
      echo "<LI>";
      echo "<img src=\"{$i_rst['picPath']}{$i_rst['picName']}\" width=\"63\"
         height=\"63\">";
      **This line generate an error //echo "<a href=\"#\" {$onClick}>";
      echo "</LI>";
    } else {
       echo "<LI>";
       echo "<img src=\"images/no_proj.jpg\" width=\"63\" height=\"63\">";
       echo "</LI>";
    }
  } 

I will be very happy for any suggestion, who can help with my problem in
" using IE7.

Kind Regards
Tom