i am using the iframe in master page
How to Disable the Click the on specific item
the issue is when i click to the icon it gives me the duplication of the screen i want to stop click to the specific item of the Dashboard
Hi onais,
You have to disable the click event for the icon.
Refer the below sample code.
HTML
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script> <script type="text/javascript"> $(function () { $('#imgClick').on('click', false); }); </script>
Demo
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.