Affiliate Programs
 
Search affiliate programs for: 
Affiliate Categories
» Affiliate Networks
» Ad Networks
» 2 Tier Programs
» Pay Per Sale
» Pay Per Lead
» Residual Income
» Datafeeds
» Multi Tier Programs
» Business Opps
» Other Programs

Newsletter
Get newly added affiliate programs by email. Enter your email here:
Article Categories
» Affiliate Marketing
» Business
» Ecommerce
» Hosting
» Marketing
» Sales
» Web Designing
» Webmasters
» SEO & Promotion
» Working At Home
» Other Articles
» Affiliate Glossary


Go Back   AffiliateSeeking Forum > Website Creation, Design & Maintenance > Website Design > HTML

HTML Discuss about HTML designing problems here or help others with their HTML designing issues.

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 05-26-2010, 01:53 PM
najjia najjia is offline
Junior Member
 
Join Date: Apr 2010
Posts: 9
najjia is on a distinguished road
Question How to disable right clicke

How to disable right clicke in HTML which site is better for learning HTML by it self
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 07-16-2010, 10:07 AM
DaveSpencer DaveSpencer is offline
Super Moderator
 
Join Date: Mar 2010
Posts: 204
DaveSpencer is on a distinguished road
Right clicking can't be done with HTML alone. Have you looked into Javascript as I know it can be done via using this scripting language.
__________________
150+ CPA Networks
Earn $0.30 to $1.20 CPM on Banner Ads - Earn even more via Popunders
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 10-27-2010, 02:13 PM
csscoll's Avatar
csscoll csscoll is offline
Member
 
Join Date: Jun 2009
Location: Manila
Posts: 43
csscoll is on a distinguished road
You could check this link from w3schools
(http://www.w3schools.com/dhtml/tryit...ydhtml_noright)

here you could learn how to disable right click function of your mouse
__________________
Collective Wisdom. Instant Results.
Need a Domain name? How about 200+ suggestions in 3 days?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 12-16-2011, 12:39 PM
Christopher Christopher is offline
Junior Member
 
Join Date: Dec 2011
Posts: 18
Christopher is on a distinguished road
First create an HTML frag box by choosing Insert > Web Object > HTML

Now copy the code below and insert it into the HEAD only part of the frag box

<script type="text/javascript">
<!--
function NoRightClick(e)
{
if(navigator.appName=="Netscape")
{
if(e.which==3||e.which==2)
{
return false;
}
}
else
{
event.cancelBubble=true;
event.returnValue=false;
}
}

if(navigator.appName=="Netscape")
window.captureEvents(Event.MOUSEDOWN)
document.oncontextmenu=NoRightClick;
window.onmousedown=NoRightClick;
// -->
</script>

This will not totally stop people copying content from your site but does work as a no right click.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 05-21-2012, 06:50 AM
mtrick mtrick is offline
Junior Member
 
Join Date: Apr 2012
Posts: 17
mtrick is on a distinguished road
use this below mention java script code


<SCRIPT language=JavaScript>

var message = "function disabled";
function rtclickcheck(keyp){ if (navigator.appName == "Netscape" && keyp.which == 3){ alert(message); return false; }
if (navigator.appVersion.indexOf("MSIE") != -1 && event.button == 2) { alert(message); return false; } }
document.onmousedown = rtclickcheck;
</SCRIPT>
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT +1. The time now is 10:29 PM.


Powered by vBulletin® Version 3.6.7
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.0.0
© 2004-2011 AffiliateSeeking. All rights reserved.