0

I am using

<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.

madth3
  • 7,275
  • 12
  • 50
  • 74
Advait
  • 5,771
  • 3
  • 18
  • 18
  • 1
    thats something which cant be manipulated... that's a browser issue.. all browsers have their own may of showing alert box. http://stackoverflow.com/questions/7853130/how-to-change-the-style-of-alert-box – Prince Singh Aug 22 '13 at 04:22

1 Answers1

0

Its a security/anti-phishing feature.

You can try jquery-alerts

Rohan Kumar
  • 40,431
  • 11
  • 76
  • 106