Home Answers Viewqa Design-concepts-design-patterns How to set left and top positions of alert box using JQuery in the below code?

 
 


naveen
How to set left and top positions of alert box using JQuery in the below code?
0 Answer(s)      4 months and 7 days ago
Posted in : Design concepts & design patterns

<script>
$(document).ready(function() {
    if(document.getElementById("faxNoId").value=="- -"){
        var show=document.getElementById("add");
        var hide=document.getElementById("edit");
        show.style.display = "inline";
        hide.style.display="none";
    }else{
        var customers=document.getElementById("faxNoId").value;
        var hide=document.getElementById("add");
        var show=document.getElementById("edit");
        show.style.display = "inline";
        hide.style.display="none";
    }
    document.getElementById("timer").style.display = "none";
    if(document.getElementById("faxNoId").value=="- -"){
        var cusno=$("#custNoId").val();
        $("#dialog-contactAlert").dialog({
            autoOpen: false,
            height: 300,
            width: 450,
            modal: true,
            open: function (event, ui) {
               $('#dialog-contactAlert').css('overflow', 'hidden');
               }
         });
        var dataString='<div><br>Customer Contact Details are incomplete, \n Do you want to update the details? <br><br><input type=button class=button value=Update name=theButton onclick=open_faxaddress('+cusno+') style=background-color: #888; color: #FFF;/> <input type=button value=Cancel class=button name=theButton1 onclick=open_close() style=background-color: #888; color: #FFF;/></div>';
         $('#dialog-contactAlert').html(dataString);
         $("#dialog-contactAlert").dialog("open");
    }
    });

    function open_faxaddress(cusno){
        open_faxadd(cusno);
        $("#dialog-contactAlert").dialog("close");
    }

    function open_close(){
        $("#dialog-contactAlert").dialog("close");
    }

</script>
View Answers









Related Pages:

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.