Home » Posts tagged "Javascript" (Page 2)

Archive for the 'Javascript' Tag

OnMouseOver Pop-Up Box

code <head> <meta http-equiv=”Content-Language” content=”en-us”> <meta http-equiv=”Content-Type” content=”text/html; charset=windows-1252″> <title>My Page</title> <link rel=”stylesheet” href=”../link.css” type=”text/css”> <script type=”text/javascript” src=”../javascript/browser_detect.js”></script> <script type=”text/javascript” src=”../javascript/popup.js”></script> </head> <body> PROFESSIONAL SKILLS<a onmouseover=”popup(‘Skills and abilities not directly related to the position for which you are applying, however, they may provide additional insight into your abilities as an employee (Examples: typing 60 words […]

Block Access To Page Context Menu

By Stephen Chapman Web novices often believe that by blocking their visitors use of the right mouse button that they can prevent the theft of their web page content. Nothing could be further from the truth as there are so many ways to bypass the “no right click script” that the only effects that such […]

Text-box autocomplete

The code is initial designed by Mircho Mirev [ momche.net ]. I’ve enhanced this script so instead of array of static data the text-box auto-complete uses database back end. Default.asp <%@LANGUAGE=”VBSCRIPT” CODEPAGE=”65001″%> <!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.01 Transitional//EN” “http://www.w3.org/TR/html4/loose.dtd”> <html> <head> <meta http-equiv=”Content-Type” content=”text/html; charset=utf-8″> <title>Intellisense Example</title> <SCRIPT language=”JavaScript” src=”moautocomplete.js”></SCRIPT> </head> <body style=”font-family: Verdana, […]