how to disable image url link
With simple CSS method for removing image link from your page.
you just put some easy script code with css code and your work finish.
<script>
$(‘.demo a ‘).click(function() { return false; });
</script>
<div class=”demo”>
<a href=”#”> want to disable link </a>
</div>
.demo class where you want to disable the image link.and a is href link tag so first you put your class name (.demo) and after a tag.
any question ask on comments.
thanks