This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: How to Disable Right Click in browser window using javascript


On Saturday 16 March 2002 09:54, Matt Gushee wrote:
> <script type="text/javascript" language="JavaScript">
>           &lt;!--
>             function NoRightClicking(){
>               ...
>             }
>           // --&gt;
>         </script>

Um, this will output "&lt;!--" instead of a comment.  Use:

<script type="text/javascript" language="JavaScript">
  <xsl:comment>
    function NoRightClicking() {
      ...
    }
  //</xsl:comment>
</script>

And then make sure that "--" doesn't appear anywhere in the Javascript, or it 
might break again.

-- 
Peter Davis
You can't cheat an honest man.  Never give a sucker an even break or
smarten up a chump.
		-- W.C. Fields

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]