Bonsoir,

pour lancer une url externe avec jquery, j'ai fait
Code js : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
 
<!DOCTYPE html>
 <html> <head><script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js"></script></head> 
 <body>
<script>
$.get("https://drive.google.com/une_video");
</script>
  </body>
</html>

mais ça n'affiche rien. Où est le bug ?