Thursday, May 12, 2016

Share Button

<script>
document.write('<script src="//sharebutton.net/plugin/sharebutton.php?type=vertical&u=' + encodeURIComponent(document.location.href) + '"></scr' + 'ipt>');
</script>

Wednesday, March 30, 2016

Popup -url

<li>Go to <a href="https://www.grc.com/never10.htm" rel="nofollow" target="_blank">Gibson's Never10</a> official site and click on the<b> Download</b>.</li>
<li>Once downloaded, the program detects if the upgrade to Windows 10 is enabled or disabled on your system and then shows a pop-up. If enabled, Click 'Disable Win10 Upgrade' button.</li>
<li>You&#8217;ll again see a pop-up that now shows Windows 10 upgrade is disabled on your system, with two buttons to 'Enable Win10 Upgrade' and 'Exit.' Click on Exit button.</li>
</ol>
  • Go to Gibson's Never10 official site and click on the Download.
  • Once downloaded, the program detects if the upgrade to Windows 10 is enabled or disabled on your system and then shows a pop-up. If enabled, Click 'Disable Win10 Upgrade' button.
  • You’ll again see a pop-up that now shows Windows 10 upgrade is disabled on your system, with two buttons to 'Enable Win10 Upgrade' and 'Exit.' Click on Exit button.
  • Tuesday, March 1, 2016

    Exiting website pop-up Java code

    <script type="text/javascript">
         window.onbeforeunload = function() { return "Are you sure you want to leave, if so, Please like my Facebook Group, Hay Check This Out. Who ever said Grunts ant smart Semper-Fi....?"; }
    </script>

    Tuesday, February 24, 2015

    Please Like on Facebook java script

    <div class="facebook-like-message">Please Click Like <span class="smiley"></span> <div class="fb-like " data-hrefhttps://www.facebook.com/HayCheckThisOut" data-width="90" data-layout="button_count" data-action="like" data-show-faces="true" data-share="false"></div></div>

    Wednesday, February 11, 2015

    Facebook social plugin java code

    Here is a FaceBook  Social Plugin code / Java script

    Facebook social plugin


     Copy and paste the code and delete --> http://global--world--news.blogspot.com/ and insert your own URL.

    <div class="fb-recommendations" data-site="http://global--world--news.blogspot.com/ " data-width="300" data-height="620" data-header="true" data-font="tahoma"></div></div>
    </div><div class="clear"></div><div class="margin-30b"></div><div class="widget"> <div class="textwidget"><center>
    <script type="text/javascript" src="http://ap.lijit.com/www/delivery/fpi.js?z=235354&u=wttv&width=300&height=250"></script> 

    Friday, July 4, 2014

    How to Disable Right Click / Java Script

     This code will disable the right click on your website or blog.


    <script language=javascript> var message="Function Disabled!"; function clickIE4(){ if (event.button==2){ alert(message); return false; } } function clickNS4(e){ if (document.layers||document.getElementById&&!document.all){ if (e.which==2||e.which==3){ alert(message); return false; } } } if (document.layers){ document.captureEvents(Event.MOUSEDOWN); document.onmousedown=clickNS4; } else if (document.all&&!document.getElementById){ document.onmousedown=clickIE4; } document.oncontextmenu=new Function("alert(message);return false") </script>

    Disable Select-Text script - Java Script Code

     This is the script that disables highlight.
    <script type="text/javascript">
    
    /***********************************************
    * Disable select-text script- © Dynamic Drive (www.dynamicdrive.com)
    * This notice MUST stay intact for legal use
    * Visit http://www.dynamicdrive.com/ for full source code
    ***********************************************/
    
    //form tags to omit in NS6+:
    var omitformtags=["input", "textarea", "select"]
    
    omitformtags=omitformtags.join("|")
    
    function disableselect(e){
    if (omitformtags.indexOf(e.target.tagName.toLowerCase())==-1)
    return false
    }
    
    function reEnable(){
    return true
    }
    
    if (typeof document.onselectstart!="undefined")
    document.onselectstart=new Function ("return false")
    else{
    document.onmousedown=disableselect
    document.onmouseup=reEnable
    }
    
    </script>