Files
jquery-notify/index.html
T
2013-04-04 13:13:08 +11:00

26 lines
633 B
HTML

<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<!-- jQuery Prompt -->
<script src="dist/jquery.prompt.js"></script>
<form>
<input id="one" value="42" data-validate="number"/>
<input id="two" value="abc" data-validate="number"/>
<input type="submit"/>
</form>
<script>
$(function() {
setTimeout(function() {
$("#one").prompt("hello");
}, 300);
setTimeout(function() {
$.prompt($("#two"),"world", {color: 'black'});
}, 600);
setTimeout(function() {
$.prompt($("#two"),$("<strong/>").html("WORLD!"), {color: 'blue'});
}, 2800);
});
</script>