javascript confirm box design and alert design
- hdConfirm()
hdConfirm()
- hdConfirm( title, description )
hdConfirm( "title","description" )
- hdConfirm( title, description, okCallback )
hdConfirm( "title", "description", function(){ alert("Deleted") } )
- hdConfirm( title, description, okCallback, cancelCallback )
hdConfirm( "title", "description", function(){ alert("Deleted") }, function(){ alert("Cancaled") } )
Success, Warning, Info, Error alert designs
- hdAlertSuccess()
hdAlertSuccess()
- hdAlertSuccess( title, description )
hdAlertSuccess( "title","description" )
- hdAlertSuccess( title, description, okCallback )
hdAlertSuccess( "title", "description", function(){ alert("ok") } )
- hdAlertInfo()
hdAlertInfo()
- hdAlertInfo( title, description )
hdAlertInfo( "title","description" )
- hdAlertInfo( title, description, okCallback )
hdAlertInfo( "title", "description", function(){ alert("ok") } )
- hdAlertWarning()
hdAlertWarning()
- hdAlertWarning( title, description )
hdAlertWarning( "title","description" )
- hdAlertWarning( title, description, okCallback )
hdAlertWarning( "title", "description", function(){ alert("ok") } )
- hdAlertError()
hdAlertError()
- hdAlertError( title, description )
hdAlertError( "title","description" )
- hdAlertError( title, description, okCallback )
hdAlertError( "title", "description", function(){ alert("ok") } )