php
  • html
  • alert
  • 2013-08-22 45 views 0 likes 
    0

    I am using<a href> shows different message in windows and linux server

    <a href=" <?=base_url(); ?>index.php/admins/candidate/inactive/<?=$list['candidateid']; ?>" onclick="return confirm('Are you sure you want to inactive this candidate ?');"><img src='/images/inactive.png'> </a> 
    

    for the delete/inactivate confirmation message in my project.

    When I run in my local system I see below message when I click on inactivate link.enter image description here

    and when I deploy the application to linux production server, I get below message. please see below image.enter image description here

    but here in production server, it shows "The page at www.xyz.xom says: ". Why it is that?

    Please help, I want to show only message, not the above "The page at..." text.

    +1

    那一些东西,不能被操纵......这是一个浏览器的问题..所有的浏览器都有自己的显示提示框的可能。 http://stackoverflow.com/questions/7853130/how-to-change-the-style-of-alert-box – codepixlabs

    回答

    0

    Its a security/anti-phishing feature.

    You can try jquery-alerts

    相关问题