This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
Home
Potentially Useful Links
How Can I Use This Plugin With Password Fields?
The standard plugin itself doesn’t support this functionality but code has been contributed in the past that allows this kind of usage (the second solution is likely to be the better one as the first relies on changing the type attribute of a password field which is forbidden in a lot of browsers).
Can you give a more complete example of how to use the plugin?
If you’re unfamiliar with jQuery then the basic usage is as follows:
<form action="/user">
<p><input id="name" name="name" /></p>
<p><input type="submit" value="Save" /></p>
</form>
<script type="text/javascript" src="/javascripts/jquery.js"></script>
<script type="text/javascript" src="/javascripts/jquery.example.min.js"></script>
<script type="text/javascript">
$(function() {
$('#name').example("Joe Bloggs");
});
</script>






