summaryrefslogtreecommitdiffstats
path: root/user_guide_src/source/libraries/javascript.rst
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2015-03-25 12:53:16 +0100
committerAndrey Andreev <narf@devilix.net>2015-03-25 12:53:16 +0100
commitb112a3eb94d19f91ee3b698f43f36fd17a06d9c3 (patch)
tree01c91d4bc3c69cd97691fafe1068f78cc6a35a0b /user_guide_src/source/libraries/javascript.rst
parent8f5c1780706113c926bb7801db27dbae97d00fcf (diff)
parentbd2a7e4062fd97017c5b16beddc15b0c7fc38210 (diff)
Merge pull request #3698 from jim-parry/fix/links
[ci skip] Fixed user guide internal & external links to resolve problems reported ...
Diffstat (limited to 'user_guide_src/source/libraries/javascript.rst')
-rw-r--r--user_guide_src/source/libraries/javascript.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/user_guide_src/source/libraries/javascript.rst b/user_guide_src/source/libraries/javascript.rst
index 7f83b2f70..e91b9ad78 100644
--- a/user_guide_src/source/libraries/javascript.rst
+++ b/user_guide_src/source/libraries/javascript.rst
@@ -135,7 +135,7 @@ In the above example:
keydown, keyup, load, mousedown, mouseup, mouseover, mouseup, resize,
scroll, or unload.
- "element_path" is any valid `jQuery selector
- <http://docs.jquery.com/Selectors>`_. Due to jQuery's unique
+ <http://api.jquery.com/category/selectors/>`_. Due to jQuery's unique
selector syntax, this is usually an element id, or CSS selector. For
example "#notice_area" would effect ``<div id="notice_area">``, and
"#content a.notice" would effect all anchors with a class of "notice"
@@ -147,7 +147,7 @@ Effects
=======
The query library supports a powerful
-`Effects <http://docs.jquery.com/Effects>`_ repertoire. Before an effect
+`Effects <http://api.jquery.com/category/effects/>`_ repertoire. Before an effect
can be used, it must be loaded::
$this->jquery->effect([optional path] plugin name); // for example $this->jquery->effect('bounce');
@@ -201,7 +201,7 @@ animate()
other additional information.
For a full summary, see
-`http://docs.jquery.com/Effects/animate <http://docs.jquery.com/Effects/animate>`_
+`http://api.jquery.com/animate/ <http://api.jquery.com/animate/>`_
Here is an example of an animate() called on a div with an id of "note",
and triggered by a click using the jQuery library's click() event.
@@ -288,7 +288,7 @@ corner()
--------
Used to add distinct corners to page elements. For full details see
-`http://www.malsup.com/jquery/corner/ <http://www.malsup.com/jquery/corner/>`_
+`http://malsup.com/jquery/corner/ <http://malsup.com/jquery/corner/>`_
::