Just when I thought it made sense I ran into another snag how can I get the string value of onsubmit to a variable? please help.
This is the line i'm trying to pull from the source code > name="quickCheck" onsubmit="java script: document.getElementById('btnDownload').disabled=true; setTimeout('document.getElementById(\'btnDownload\').disabled=false', 5000); if (g_IsIE) {window.open('http://download.microsoft.com/download/5/3/7/5374ce96-3838-4959-92af-77ab011fd704/WindowsXP-KB932823-v3-x86-ENU.exe
This won't work
#include <IE.au3>
#include <array.au3>
$oIE = _IEAttach("Download") ;http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=28e2fdb2-1aa5-4c84-8255-b3142ca2fe85
$oForm = _IEFormGetObjByName ($oIE, "quickCheck")
$oText = _IEFormElementGetObjByName ($oForm, "onsubmit")
MsgBox(0, "Form Element Value", _IEFormElementGetValue ($oText))