Advertisement
Guest User

Untitled

a guest
Oct 24th, 2014
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. if(isset($_GET["id"]) && is_numeric($_GET["id"])){
  2. echo '
  3. <script>
  4. $(".fondo-popup").fadeIn("slow");
  5. $(".open-display").slideDown("slow");
  6. $.ajax({
  7. type:"POST",
  8. data: "id='.$_GET["id"].'",
  9. url: "publi.php",
  10. success:function(data){
  11. var res= JSON.parse(data);
  12. window.history.pushState("", "", "/view-"+res.id+".html");
  13. $(".content-view h1").text(res.titulo);
  14. $(".description p").text(res.descripcion);
  15. $(".repro").attr("src",res.link);
  16. $("#tw").attr("onclick","window.open(\'http://twitter.com/intent/tweet?&amp;url=http://www.descansos.net/view-"+res.id+".html\',\'_blank\', \'width=640, height=340\'); return false;");
  17. $("#fb").attr("onclick","window.open(\'http://www.facebook.com/sharer.php?u=http://www.descansos.net/view-"+res.id+".html\',\'_blank\', \'width=640, height=340\'); return false;");
  18. }
  19. });
  20. </script>';
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement