$.alert('message',{options})
$.alert('An Alert Dialog By jQueryScript',{em:'Emphasized Text',title:'Alert Dialog'})
$.alert('message',{options})
$.alert('An Alert Dialog By jQueryScript',{em:'Emphasized Text',title:'Alert Dialog'})
$.confirm('message',{options})
$.confirm('Are You Sure To Delete This Entry?',{em:'BEmphasized Text',title:'Delete!',callEvent:function(){$.alert('Deleted!')},cancelEvent:function(){$.alert('Canceled');},cancelButton:'No!'})
$.prompt('message',{options})
$.prompt('Try To Type 1234',{title:'Login Form',callEvent:function(val){if(val==1234) $.alert('Invalid Password'); else $.alert('Logged In');},input:'password',confirmButton:'Log In'})
$("#item-box").stop().animate({"margin-left":"500px"},1000)
.animate({"margin-left":"0"},300)
.delay(300).alert('Another Dialog',
{
callEvent:function(){
$("#item-box").stop().animate(
{"margin-left":"500px"},1000
).animate(
{"margin-left":"0"},300
)
}
});