Html, muestra la forma de realizar un botón que se active cuando en el cuadro de texto haya algún dato o carácter.
<!DOCTYPE html>
<html>
<head>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<script src="https://code.jquery.com/jquery.min.js"></script>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
<div class="well clearfix">
<textarea class="form-control"></textarea><br/>
<button class="btn btn-primary pull-right">Tweet</button>
</div>
<script id="jsbin-javascript">
$("button").prop("disabled", true);
// Cuando el valor del text area cambia...
$("textarea").on("input", function() {
// Si hay por lo menos un caracter...
if ($(this).val().length > 0) {
// Habilita el botón.
$("button").prop("disabled", false);
} else {
// Si no, deshabilita el botón.
$("button").prop("disabled", true);
}
});
</script>
</body>
</html>