diff options
Diffstat (limited to 'docs/javascript.html')
| -rw-r--r-- | docs/javascript.html | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/javascript.html b/docs/javascript.html index 3cba210a1..70646afdb 100644 --- a/docs/javascript.html +++ b/docs/javascript.html @@ -571,6 +571,14 @@ $('#myModal').on('hidden', function () { <strong>Heads up!</strong> Navbar links must have resolvable id targets. For example, a <code><a href="#home">home</a></code> must correspond to something in the dom like <code><div id="home"></div></code>. </div> + <h3>Methods</h3> + <h4>.scrollspy('refresh')</h4> + <p>When using scrollspy in conjunction with adding or removing of elements from the DOM, you'll need to call the refresh method like so:</p> +<pre class="prettyprint linenums"> +$('[data-spy="scroll"]').each(function () { + var $spy = $(this).scrollspy('refresh') +}); +</pre> <h3>Options</h3> <table class="table table-bordered table-striped"> <thead> |
