gnu-social/plugins/LinkPreview/linkpreview.js

11 lines
164 B
JavaScript
Raw Normal View History

2010-11-16 20:41:35 +00:00
/**
* (c) 2010 StatusNet, Inc.
*/
$(function() {
$('#notice_data-text').change(function() {
var text = $(this).val();
alert(text);
});
});