How can I manually launch a ForeSee browse dialog to display using javascript? or URL parameters?

I was unable to find the API documentation for ForeSee , and I had an error report related to the ForeSee Survey prompt dialog box, which appears randomly. I tried to clear the cache and cookies, but it is not displayed for me yet, is there any way to trigger its display using javascript? Or maybe with specific URL parameters?

Q foresee-trigger.jsI updated the array FSR.sitesto include a link to localhost:

var FSR = {
    'version': '7.0.0',
    'date': '01/01/2011',
    'enabled': true,
    'auto' : true,
    'encode' : true,
    'files': './foresee/', //default path when no match below         
    'id': 'etc',
    'sites': [
    /* several existing ones, etc.*/
    {
        name: 'localhost',
        path: 'localhost',
        files: '//localhost/subdirectory/foresee/',
        domain: 'localhost'
    },{
        path: '.',
        domain: 'default'
    }]
};
+3
source share
2 answers

, "fsradmin.html", , foresee-trigger.js. , localhost/YourApp/scripts/foresee/fsradmin.html. 100% , .

- foresee-surveydef.js :

: {

   sp: 75,  //this is the sampling % - set it to 100 to ensure that it appears
   lf: 1  // loyalty factor, (the # of pages the user has to hit before it appears)
     

},

, % , .

, : http://demo.foreseeresults.com/_code/docs/ForeSee_Trigger_Code_Implementation_Guide.pdf

+4

FSR.showInvite(); , Foresee , , cookie . , . , , . .

+2

All Articles