Modified Resources so that external (non-HTML) files could be linked to and viewed
[comp80.git] / js.js
blob5c0fcd1ac0b3e134a189df3c6dd7995d8d4f8738
1 function show_tweets () {
2         $.get('pages/ajax_show_tweets.php', function(data) {
3                 $('#comp80-tweets').html(data);
4         });
7 function hide_input_text (text) {
8         var inputText = '';
9         $('input[type=text]').focus(function() {
10                 if ($(this).val() == text) {
11                         inputText = $(this).val();
12                         $(this).val('');
13                 }
14         }).blur(function() {
15                 if ($(this).val() == '')
16                         $(this).val(text);
17         });