From jQuery JavaScript Library
« Back to Attributes
removeAttr( name )
Remove an attribute from each of the matched elements.
Arguments:| name | String | |
|---|
| The name of the property to remove. |
Examples:| Name | Type |
Clicking the button enables the input next to it.
$("button").click(function () {
$(this).next().removeAttr("disabled")
.focus()
.val("editable now");
});
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script src="../jquery-latest.js"></script>
<script>
$(document).ready(function(){
$("button").click(function () {
$(this).next().removeAttr("disabled")
.focus()
.val("editable now");
});
});
</script>
</head>
<body>
<button>Enable</button>
<input type="text" disabled="disabled" value="can't edit this" />
</body>
</html>