gnu-social/plugins/LinkPreview/linkpreview.js

11 lines
164 B
JavaScript

/**
* (c) 2010 StatusNet, Inc.
*/
$(function() {
$('#notice_data-text').change(function() {
var text = $(this).val();
alert(text);
});
});