diff --git a/entries/email-method.xml b/entries/email-method.xml
index 613ad85..a0aedbe 100644
--- a/entries/email-method.xml
+++ b/entries/email-method.xml
@@ -5,6 +5,7 @@
Return true if the value is a valid email address.
Works with text inputs.
+ In case you need a custom email pattern use the $.validator.methods property.
Makes "field" required and an email address.
diff --git a/entries/jQuery.validator.methods.xml b/entries/jQuery.validator.methods.xml
new file mode 100644
index 0000000..eba2d32
--- /dev/null
+++ b/entries/jQuery.validator.methods.xml
@@ -0,0 +1,15 @@
+
+
+
+ jQuery.validator.methods
+ Object holding all validation methods known to the validator. This can be accessed to override individual methods, while keeping the default messages.
+
+ Sets a custom email pattern for the built-in email validation rule.
+
+
+
+
diff --git a/pages/documentation.md b/pages/documentation.md
index 36b4254..d671a1b 100644
--- a/pages/documentation.md
+++ b/pages/documentation.md
@@ -133,6 +133,8 @@ Some more methods are provided as add-ons, and are currently included in additio
You can find the [source code for all additional methods in the GitHub repository](https://github.com/jzaefferer/jquery-validation/tree/master/src/additional).
+It is possible to re-define the implementation of the built-in rules using the [`$.validator.methods` property](/jQuery.validator.methods/)
+
# [General Guidelines](/reference)
The General Guidelines section provides detailed discussion of the design and ideas behind the plugin, explaining why certain things are as they are. It covers the features in more detail than the API documentation, which just briefly explains the various methods and options available.