hi all
how it can be implemented that- load jquery file dynamically whether it is not loaded??? or if loaded then ignore further load.,.??
thanks
hi all
how it can be implemented that- load jquery file dynamically whether it is not loaded??? or if loaded then ignore further load.,.??
thanks
<script type="text/javascript">
if (typeof jQuery == 'undefined')
{
document.write(unescape("%3Cscript src='/path/to/your/jquery' type='text/javascript'%3E%3C/script%3E"));
}
</script>