aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/window/stop/index.md
blob: 491876c7b881c43ad6bd3a54a1271e1eaae24bb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
---
title: Window.stop()
slug: Web/API/Window/stop
tags:
  - API
  - DOM
  - HTML DOM
  - Méthode
  - Reference
  - Window
  - stop
translation_of: Web/API/Window/stop
---
<div>{{APIRef}}</div>

<p><strong><code>window.stop()</code></strong> arrête le chargment des ressources supplémentaires dans le contexte de navigation actuel, ce qui équivaut au bouton d'arrêt dans le navigateur.</p>

<p>En raison de la manière dont les scripts sont exécutés, cette méthode ne peut pas interrompre le chargement de son document parent, mais elle arrêtera ses images, nouvelles fenêtres et autres objets en cours de chargement.</p>

<h2 id="Syntax">Syntaxe</h2>

<pre class="syntaxbox">window.stop()
</pre>

<h2 id="Example">Exemple</h2>

<pre class="brush:js">window.stop();
</pre>

<h2 id="Specification">Spécification</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">Spécifications</th>
   <th scope="col">Statut</th>
   <th scope="col">Commentaires</th>
  </tr>
  <tr>
   <td>{{SpecName('HTML WHATWG','browsers.html#dom-window-stop','Window.stop()')}}</td>
   <td>{{Spec2('HTML WHATWG')}}</td>
   <td></td>
  </tr>
  <tr>
   <td>{{SpecName('HTML5 W3C', 'browsers.html#dom-window-stop', 'Window.stop')}}</td>
   <td>{{Spec2('HTML5 W3C')}}</td>
   <td></td>
  </tr>
 </tbody>
</table>

<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2>

<p>{{Compat("api.Window.stop")}}</p>