debugging - how to view source code for javascript src -
i apologize in advance if question not appropriate forum. not find answers searches in google or stackexchange. also, because question specific, thought might acceptable.
background: end purpose troubleshoot server connection error client machine runs javascript. i'm trying @ least determine source , destination network ports used communication attempt. know 0 javascript have background in c++.
the client runs html page:
<script type="text/javascript" language="javascript" src="com.vmware.vim.cimmonitor.gwt.cimui.nocache.js"></script> is there way view contents of specific js file? cannot tell if js file bundled locally in kind of javascript library or resides somewhere in vmware.com i've tried directly enter full js name firefox, got server not found error.
thanks.
press f-12 open browser's debugger. open network section. reload page. show complete list of resources loaded. can click on of these @ source , http header information.
unless js code using websockets, communication http:// on port 80.
Comments
Post a Comment