user2161650
user2161650

Reputation:

How customize delete confirmation message

HTML:

I don't want the confirmation box as will display in earlier model, I am trying to customize the confirmation popup box. See below is my code for that:

<div id="add_form" style="display:none">
    <h2> Are you sure want to delete the Follower</h2><br />
    <div style="width:180px;margin:20px 5px 0 10px" align="right">    
        <button style="margin-right:10px;" type="button" class="close" name="cancel" class="forward backicon">

            Cancel
        </button>   
        <button type="submit" id="add" name="add" title="Add">
        Ok
             </button>
    </div>
</form>
</div>

Is it possible to do it?

Upvotes: 1

Views: 492

Answers (1)

Animesh Nandi
Animesh Nandi

Reputation: 458

Yes possible, you can customize this using jquery dialog

Upvotes: 1

Related Questions