http://127.0.0.1:8001/searchdiagnosis.html

Discussion in 'Chickenfoot Scripts' started by Graham, Nov 5, 2006.

  1. Graham

    Graham Developer Staff Member

    This page comes up with the Firefox icon on the add diagnosis screen in the consult editor, and the following script searches on the MedlinePlus site.

    <pre id="pre">// search the Medline Plus library

    try { disease = find(/Disease: (.*)/).groups[1]; }
    catch(e) {
    disease = '';
    }

    go('http://www.nlm.nih.gov/medlineplus/encyclopedia.html')
    enter(disease);
    click('search medline plus');

    </pre>

Share This Page