Disable Text on web page

by santosh_patnala

HTML

<p style="color:#5F5F5F;">We’re looking for highly motivated individuals to help us design excellent
    databases for our project. Candidate should be able to design highly complex,
    reliable, and scalable database architecture to meet the product needs
    for a very large market. Candidate should be passionate about his work.</p>
<p
style="color:#5F5F5F;">We’re looking for highly motivated individuals to help us design excellent
    databases for our project. Candidate should be able to design highly complex,
    reliable, and scalable database architecture to meet the product needs
    for a very large market. Candidate should be passionate about his work.</p>
    <p
    style="color:#5F5F5F;">We’re looking for highly motivated individuals to help us design excellent
        databases for our project. Candidate should be able to design highly complex,
        reliable, and scalable database architecture to meet the product needs
        for a very large market. Candidate should be passionate about his work.</p>
        <p
        style="color:#5F5F5F;">We’re looking for highly motivated individuals to help us design excellent
            databases for our project. Candidate should be able to design highly complex,
            reliable, and scalable database architecture to meet the product needs
            for a very large market. Candidate should be passionate about his work.</p>

JavaScript

$(document).ready(function () {
    $.support.selectstart = "onselectstart" in document.createElement("div");
    $.fn.disableSelection = function () {
        return this.bind(($.support.selectstart ? "selectstart" : "mousedown") +
            ".ui-disableSelection", function (event) {
            event.preventDefault();
        });
    };

    $("body").disableSelection();
});