Jump to content

Search the Community

Showing results for tags 'onclick javascript ie'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Announcements and Site News
    • Administration
  • AutoIt v3
    • AutoIt Help and Support
    • AutoIt Technical Discussion
    • AutoIt Example Scripts
  • Scripting and Development
    • Developer General Discussion
    • Language Specific Discussion
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Categories

  • AutoIt Team
    • Beta
    • MVP
  • AutoIt
    • Automation
    • Databases and web connections
    • Data compression
    • Encryption and hash
    • Games
    • GUI Additions
    • Hardware
    • Information gathering
    • Internet protocol suite
    • Maths
    • Media
    • PDF
    • Security
    • Social Media and other Website API
    • Windows
  • Scripting and Development
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Location


WWW


Interests

Found 1 result

  1. Hello After trying some Web's solutions, didn't figure out my problem ... I'd like to click on a 'label' link called "Recherche avancĂ©e" that is managed by some Javascript Here's HTML code <tr> <input type="submit" name="action.standardsearch.search" value="Rechercher" class="im-button" id="imh_1" /></td> </tr> <tr> <td align="right"><label style="text-decoration: underline;cursor:pointer;" onclick="imSubmitAction('action.standardsearch.detailed');">Recherche avancée</label></td> </tr> <tr> <td>La recherche ne peut renvoyer plus de 500 résultats.<BR>Si vous ne trouvez pas le compte recherché, veuillez affiner vos critères de recherche.</td> </tr> Tried this unsuccesfully $oLabels = _IETagNameGetCollection ($oIE,"label") For $oLabel In $oLabels If $oLabel.Onclick = "imSubmitAction('action.standardsearch.detailed');" Then _IEAction($oLabel,"click") ExitLoop EndIf Next May you help me please to fix this issue ? Regards
×
×
  • Create New...