advertisement

Subject:   Detecting Acrobat Reader & others
Date:   2005-04-15 15:01:58
From:   jas1114
Response to: Detecting Acrobat Reader & others

What is the rest of this for loop:


if (navigator.plugins && navigator.plugins.length)
{
for (x=0; x ????????????
{

Main Topics Oldest First

Showing messages 1 through 1 of 1.

  • Detecting Acrobat Reader & others
    2005-04-18 06:21:43  ales78 [Reply | View]

    It iterates through an array of plugins. Missing piece of code can looks like:

    for ( var x = 0, l = navigator.plugins.length; x < l; ++x )
    {
    ...
    }