|
@ -0,0 +1,82 @@
|
|
1
|
<!doctype html>
|
|
2
|
<html>
|
|
3
|
<head>
|
|
4
|
<meta charset="utf-8" />
|
|
5
|
<meta name="description" content="" />
|
|
6
|
<meta name="author" content="Bryan Allred" />
|
|
7
|
|
|
8
|
<title>Clean SQL String</title>
|
|
9
|
<link href="http://plus.google.com/112949321083048638287" rel="publisher" />
|
|
10
|
|
|
11
|
<style type="text/css">
|
|
12
|
#browser
|
|
13
|
{
|
|
14
|
visibility: hidden;
|
|
15
|
display: none;
|
|
16
|
}
|
|
17
|
|
|
18
|
.scribble
|
|
19
|
{
|
|
20
|
padding: 1em;
|
|
21
|
width: 69em;
|
|
22
|
height: 15em;
|
|
23
|
}
|
|
24
|
|
|
25
|
#bottom
|
|
26
|
{
|
|
27
|
|
|
28
|
}
|
|
29
|
</style>
|
|
30
|
|
|
31
|
<!--[if lt IE 9]>
|
|
32
|
<style type="text/css">
|
|
33
|
#browser
|
|
34
|
{
|
|
35
|
display: block;
|
|
36
|
visibility: visible;
|
|
37
|
}
|
|
38
|
</style>
|
|
39
|
<![endif]-->
|
|
40
|
</head>
|
|
41
|
<body>
|
|
42
|
<!-- Warning to upgrade the browser -->
|
|
43
|
<div id="browser">
|
|
44
|
<h2>Dude, you are missing are the cool stuff!</h2>
|
|
45
|
<p>We recommend upgrading to the latest <a href="http://ie.microsoft.com" title="Microsoft Internet Explorer">Internet Explorer</a>, <a href="http://chrome.google.com" title="Google Chrome">Google Chrome</a>, or <a href="http://mozilla.org/firefox" title="Firefox">Firefox</a>. If you are using IE 9 or later, make sure you turn off "Compatibility View".</p>
|
|
46
|
</div>
|
|
47
|
<a href="https://github.com/bmallred/cleansqlstring"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png" alt="Fork me on GitHub"></a>
|
|
48
|
|
|
49
|
<h2>Dirty, filthy, ugly text</h2>
|
|
50
|
<textarea id="top" class="scribble"></textarea>
|
|
51
|
|
|
52
|
<h2>Clean, fresh, purty text</h2>
|
|
53
|
<textarea id="bottom" class="scribble" readonly></textarea>
|
|
54
|
|
|
55
|
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
|
|
56
|
<script>
|
|
57
|
$(function () {
|
|
58
|
function scrub() {
|
|
59
|
var originalText = $("#top").val();
|
|
60
|
var modifiedText = originalText.replace(/'/g, "''");
|
|
61
|
$("#bottom").val(modifiedText);
|
|
62
|
}
|
|
63
|
|
|
64
|
$(document).on("change", "#top", function () {
|
|
65
|
scrub();
|
|
66
|
});
|
|
67
|
$(document).on("keyup", "#top", function () {
|
|
68
|
scrub();
|
|
69
|
});
|
|
70
|
|
|
71
|
$(document).on("focus", "#bottom", function () {
|
|
72
|
$(this).select();
|
|
73
|
})
|
|
74
|
|
|
75
|
$(document).on("mouseup", "#bottom", function() {
|
|
76
|
$(this).unbind("mouseup");
|
|
77
|
return false;
|
|
78
|
});
|
|
79
|
})
|
|
80
|
</script>
|
|
81
|
</body>
|
|
82
|
</html>
|