When i am deploying my application in weblogic9.2, i am getting javascript error "Object doesn't support this property or method",but the functionality on button click are happening.But when i am deploying in weblogic11g the same javascript error is blocking the functionality and the button click nothing is happening.
When i debug found the java script error coming from the below code.
<script type="text/javascript">
//<![CDATA[
$(document).ready(function(){ // error comes from here
$('.button').each(function() {
$(this).attr('title', $(this).attr('value'));
And here is the code where jquery is included
<script type="text/javascript" src="<html:rewrite page='/asset/js/jquery-1.10.2.min.js'/>"></script>
Is this the problem with jquery version with weblogic 11g ? Can anybody help me on this?