SHOW:
|
|
- or go back to the newest paste.
1 | <script src='http://code.jquery.com/jquery-latest.js'/> | |
2 | <script type='text/javascript'> | |
3 | //<![CDATA[ | |
4 | ||
5 | setInterval("checarMensagem()", 5000); | |
6 | ||
7 | function checarMensagem() { | |
8 | ||
9 | $.get("http://ips-team.webcindario.com/blog.php?url=http://www.SEUBLOG.blogspot.com/feeds/posts/default?alt=rss", function(data) | |
10 | { | |
11 | novaPostagem(data); | |
12 | }); | |
13 | } | |
14 | ||
15 | function novaPostagem(dados) { | |
16 | data = dados.split("|"); | |
17 | ||
18 | if(data[0].search("2") != -1){ | |
19 | $("#mensagemAviso").show("slow"); | |
20 | } | |
21 | else { | |
22 | $("#mensagemAviso").hide("slow"); | |
23 | } | |
24 | } | |
25 | //]]> | |
26 | </script> | |
27 | ||
28 | // Veja o Tutorial de Como usar este código em www.brunodasilva.com.br | |
29 | // Criado por Bruno da Silva | |
30 | // Este comentário não faz parte do código |