You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.
Currently, there’s no change since phpMyVisites – Internet ExploDer’s plugins are still detected through writing VBS code into document.
Yesterday, I started adapting PMV’s tracker to JS object code. Of course, document.write won’t work in such situation. After a few hours of googling and writing, I wrote something like this:
```
plugIE: function(pmv_plug){
try{
control = new ActiveXObject(pmv_plug);
return true;
}catch(e){
return false;
}
},
```
It would be easier to implement into object style by using new ActiveXObject.
Keywords: javascript plugins detect
The text was updated successfully, but these errors were encountered:
Currently, there’s no change since phpMyVisites – Internet ExploDer’s plugins are still detected through writing VBS code into document.
Yesterday, I started adapting PMV’s tracker to JS object code. Of course, document.write won’t work in such situation. After a few hours of googling and writing, I wrote something like this:
```
plugIE: function(pmv_plug){
try{
control = new ActiveXObject(pmv_plug);
return true;
}catch(e){
return false;
}
},
```
It would be easier to implement into object style by using new ActiveXObject.
Keywords: javascript plugins detect
The text was updated successfully, but these errors were encountered: