in reply to Re^2: reading web pages / how to look at javascript subroutine
in thread reading web pages / how to look at javascript subroutine

Of course. You can't hide client side JS. You need to look in the srcs of the scripts as ikegami suggested. These ones-

<script type="text/javascript" language='Javascript' src='/IAPD/In +cludes/Validation/Search/iapd_OrgSearch.js'></script> <script type="text/javascript" language='Javascript' src='/Iapd/ +Includes/iapd_WindowManagement.js'></script> <script type="text/javascript" language='Javascript' src='/Iapd/In +cludes/iapd_SetAndSub.js'></script>

The function you're after is in the last one. This is pretty basic HTML, though. Good XHTML and JS tutorials would be a good investment before proceeding.

Replies are listed 'Best First'.
Re^4: reading web pages / how to look at javascript subroutine
by Ninth Prince (Acolyte) on Nov 13, 2008 at 20:31 UTC
    Thank you, this was quite helpful. I see what is going on now. I see that it is submitting the form. I have posted forms before using PERL, but I'm not sure how to proceed here. I'll play around with it and see what I can figure out. Thanks again.