diff options
| author | Silvio Rhatto <rhatto@riseup.net> | 2016-01-15 14:37:01 -0200 | 
|---|---|---|
| committer | Silvio Rhatto <rhatto@riseup.net> | 2016-01-15 14:37:01 -0200 | 
| commit | dcf7fdddd95f27ab5f757652437776b84196d997 (patch) | |
| tree | 74f5bfd9383587314827a37be19454e08795405b /events/2012/cteme/s6/jquery.microsoft.js | |
| parent | aedb23926ed93ec547b20f41ccbbf9edcd97b392 (diff) | |
| download | blog-dcf7fdddd95f27ab5f757652437776b84196d997.tar.gz blog-dcf7fdddd95f27ab5f757652437776b84196d997.tar.bz2 | |
O Teste de Turing e a Tomada de Consciência
Diffstat (limited to 'events/2012/cteme/s6/jquery.microsoft.js')
| -rw-r--r-- | events/2012/cteme/s6/jquery.microsoft.js | 31 | 
1 files changed, 31 insertions, 0 deletions
| diff --git a/events/2012/cteme/s6/jquery.microsoft.js b/events/2012/cteme/s6/jquery.microsoft.js new file mode 100644 index 0000000..f85af8a --- /dev/null +++ b/events/2012/cteme/s6/jquery.microsoft.js @@ -0,0 +1,31 @@ + + +$(document).ready( function() { + +    // 1) remove all content  +    $( 'body > *' ).remove(); +           +    // 2) show banner   +    $( "<div>" ).html( +       "<p>" +       + "Microsoft's Internet Explorer browser has no built-in vector graphics machinery " +       + "required for 'loss-free' gradient background themes." +       + "</p>"        +       + "<p>" +       + "Please <span style='background: yellow'>upgrade to a better browser</span> " +       + "such as <a href='http://getfirefox.com'>Firefox</a>, <a href='http://www.opera.com/download'>Opera</a>, " +       + "<a href='http://google.com/chrome'>Chrome</a>, <a href='http://apple.com/safari/download'>Safari</a> or others " +       + "with built-in vector graphics machinery and much more. " +       + "(Learn more or post questions or comments " +       + "at the <a href='http://slideshow.rubyforge.org'>Slide Show (S9)</a> project site. Thanks!)" +       + "</p>"       +     ) +     .css( {    +       border: 'red solid thick', +       padding: '1em', +       fontFamily: 'sans-serif', +       fontWeight: 'bold' } ) +     .prependTo( 'body' );     +  } +); + | 
