What if master page javascript is colliding with current page javascript on which you are using javascript that is same as that of master page javascript.In that case you have to ignore master page javascript by just one line code to make current page javascript work.Below is the simple jquery code
<script type="text/javascript">
$.noConflict();
</script>
Done !! :)
<script type="text/javascript">
$.noConflict();
</script>
Done !! :)
Comments
Post a Comment