I have a strange problem with my IDE. I'm using IBM RAD8.0 version with Websphere 8.0. I'm using a jQuery library version 1.9.1 in my application. I see that when I started using 'console.log' key word to display debug messages my IDE won't run jQuery at all at the same time if I launch my app using external IE it detects my jQuery code and executes the app normally!! When the keyword 'console.log' is replaced with 'alert' then the RAD 8.0's internal browser detects the jQuery code and executes normally. Why is RAD local browser weary of 'console.log' keyword?
This is how I'm importing the jquery file into my JSP page.
<script type="text/javascript" charset="utf-8" src="${pageContext.request.contextPath}/javascript/jquery-1.9.1.js"></script>