Tricky Konqueror Question
If you link to an application in Konqueror, using HTML, upon clicking the link the user is prompted with a message box saying "Are you sure you want to execute 'program name'? Does anyone know how to disable this behavior so that the link would execute automatically? Here is an example of what I'm talking about:
<html>
<head>
</head>
<body>
<a href="Test"><img src="bitmap.png"></a>
<iframe src="file:/root/Assignments" width = "400" height ="300">
</body>
</html>
I want people to be able to click on the 'bitmap.png' image and be immediately run the 'Test' executable.
Thanks for your help.
|