Handle paste event and get data from clipboard
Description
The following code shows how to handle paste event and get data from clipboard.
Example
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='http://code.jquery.com/jquery-1.9.1.js'></script>
<script type="text/javascript"
src="http://code.jquery.com/mobile/1.3.0-beta.1/jquery.mobile-1.3.0-beta.1.js"></script>
<link rel="stylesheet" type="text/css"
href="http://code.jquery.com/mobile/1.3.0-beta.1/jquery.mobile-1.3.0-beta.1.css">
<script type='text/javascript'>//<![CDATA[
$(window).load(function(){<!--from ww w. ja v a2 s . co m-->
$('input').on('paste', function (e) {
if (e.originalEvent.clipboardData) {
var text = e.originalEvent.clipboardData.getData("text/plain");
$('p').empty();
$('p').append(text);
}
});
// keyboard
$('input').on('keydown keyup keypress', function () {
var text = $(this).val();
$('p').empty();
$('p').append(text);
});
});//]]>
</script>
</head>
<body>
<input type=text />
<p></p>
</body>
</html>