2. var $J = jQuery.noConflict(); 를 추가한다.
3. jquery 사용시 $ 대신 jQuery 를 사용한다.
ex.)
<script type="text/javascript" src="prototype.js"></script>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
var $J = jQuery.noConflict();
jQuery(document).ready(function(){
alert("Load Event");
jQuery("#id").val("test");
});
</script>
Posted by 홍반장