+1  A: 

There may be a syntax error in the script which causes it to not show up in the Scripts tab.

Enable the Console tab and it will show you any syntax errors encountered.

strager
Thanks, that's the solution I need-- there is a syntax error at this line: var idSelect=$"#priorityStatus"+parseData.id;
Ngu Soon Hui
A: 

I believe the issue is that you are using the tag to both load the bpoCases.js file and to contain locally written JavaScript.

Place the call to the bpoCases.js file in it's own separate tag. Then start a new tag block for your locally written code.

Lark
That's the result from the firebug console-- as a matter of face I really did place a call to the bpoCases.js in my html, and start of my code inside that js file.
Ngu Soon Hui