Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've got an application that has a quasi-browser built into it and the below Javascript is in the browser in the application. This works a treat on all users' PCs except those running the application as a remote app using terminal services.

When a remote user clicks on the button, it does bugger all!

Is there a way I can get this link to open up either in another terminal app, or in a local app?

<form action="http://intranet-srv02/emailsend/contact.php" method="post" onsubmit="target_popup(this)">
<input name="userid" type="hidden" value="[userid]" />
<input type="submit" value="Contact Mailshot" />
</form>
<script type="text/javascript">
function target_popup(form) {
    window.open('', 'formpopup', 'width=1100,height=750,resizable,scrollbars');
    form.target = 'formpopup';
}
</script>
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.