How to disable the right click, copy text and view source in a website

How to disable the right click, copy text and view source in a website

If you want to secure your website with JavaScript no right click ,no copy text , block the view source in the browser (CTRL + U). You are worked hardly to place the content in the your site. But some one easily stolen the content just copying from your website or from the view source and some experts may use right  click in your site and stolen...
How to include CSS and JS files via HTTPS

How to include CSS and JS files via HTTPS

Generally we include the CSS and JS files are in the below format. <link rel="stylesheet" href="http://example.com/style.css"> <script src="http://example.com/script.js"> The links are works perfect in the normal protocal like http://example.com .when we move to the SSL enabled site i.e https://example.com. In this case above inlcuded...
How to auto load the page in div every 5 seconds

How to auto load the page in div every 5 seconds

Now a days we are seen many websites are fetch the data without page refresh. If you want to load the page auto  in div by using jquery. It is possible by using the setInterval() here you can mention the auto load page and time. Then you are defined the page will load the certain amount of time as you set in the function. This page content will...