/* * jQuery Plugin : jConfirmAction * * by Hidayat Sagita * http://www.webstuffshare.com * Licensed Under GPL version 2 license. * */ (function($){ jQuery.fn.jConfirmAction = function (options, callback) { // Some jConfirmAction options (limited to customize language) : // question : a text for your question. // yesAnswer : a text for Yes answer. // cancelAnswer : a text for Cancel/No answer. var theOptions = jQuery.extend ({ question: "Are You Sure?", yesAnswer: "Yes", cancelAnswer: "Cancel" }, options); return this.each (function () { $(this).click(function(e) { e.preventDefault(); var p = $(this); if($(this).next('.question').length <= 0) $(this).after('