Disable resize on textarea
Description
The following code shows how to disable resize on textarea.
Example
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='http://code.jquery.com/jquery-1.6.4.js'></script>
<script type='text/javascript'
src="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.js"></script>
<link rel="stylesheet" type="text/css"
href="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.css">
<style type='text/css'>
#imageURLId {<!-- ww w . ja v a2 s. c o m-->
font-size: 14px;
font-weight: normal;
resize: none;
overflow-y: scroll;
}
</style>
</head>
<body>
<label for="aboutDescription" id="aboutHeading">About</label>
<textarea rows="15" cols="50" id="aboutDescription"
style="resize: none;"></textarea>
<a id="imageURLId" target="_blank">Go to HomePage</a>
</body>
</html>