Some of you might want to disable the mouse right click of your website, this is how you do it with jQuery.
JS - jQuery
$(document).ready(function(){
$(document).bind("contextmenu",function(e){
return false;
});
});
Some of you might want to disable the mouse right click of your website, this is how you do it with jQuery.
$(document).ready(function(){
$(document).bind("contextmenu",function(e){
return false;
});
});
Comments will be moderated and
rel="nofollow"will be added to all links. You can wrap your coding with[code][/code]to make use of built-in syntax highlighter.