 Knowledge Article 0403:
The "Exit" button in my SellFolio project does not work
_________________________________________________
Explanation 1
When running your SellFolio project via the Internet, the "Exit"
button on the Main Menu does not close the browser window when
clicked.
Solution 1
We have found that the Exit button works reliably in Microsoft
Internet Explorer, however it only works in Firefox and Netscape
under the following condition: the sellfolio.html page that you
display must be launched using Javascript. Example code is
shown below, although we do not warrant its reliability across all
web browsers.
To make the Exit button work, you must have a "launching" page
(i.e., a page that launches your sellfolio.html file). The
following code can be pasted into your launching page to launch the
sellfolio.html file using Javascript:
<a href="#" onClick="window.open('sellfolio.html','screen','top=0,left=0,titlebar=yes,scrollbars=no')">View
SellFolio Project</a>
Or, if you are using a relative path to your sellfolio.html file,
you can instead use:
<a href="#" onClick="window.open('pathtoyoursellfolioproject/sellfolio.html',
'screen','top=0,left=0,titlebar=yes,scrollbars=no')">View SellFolio
Project</a>
NOTE: Not all web browsers support the above code, and SellFolio LLC
does not warrant its use or reliability.
NOTE: If you find that the Exit button does not work in Microsoft
Internet Explorer, please send an email to
support@sellfolio.com.
<< Go
back to Support page
|