Log in

View Full Version : having problems with Onclick



groogruxking40
08-14-2009, 05:03 PM
here is my code


<input type="submit" class="button" onclick="window.open('http://wwww.christiancouriernewspaper.com/upload.html',Upload','width=400,height=400')" name="<?php echo $form_id; ?>" id="<?php echo $form_id; ?>" value="<?php echo $submit_text; ?>" alt="<?php echo $submit_text; ?>"<?php echo $x_or_h; ?>><br<?php echo $x_or_h; ?>>

if you go to this page.. www dot christiancouriernewspaper dot com / blogbase / contactpage.php

you will see the SUBMIT button, what I want is for when the user hits submit, it

(a) sends the information to me
(b) popups a window to upload a file

for someone reason it's not working-- it's sending the emails just fine, but the popup doesn't show
any/all help will be much appreciated

thank you

magicyte
08-14-2009, 05:37 PM
Try out this cleaner version of your code... :/


<input type="submit" class="button" onclick="window.open('http://wwww.christiancouriernewspaper.com/upload.html', 'Upload', 'width=400, height=400');" name="<?php echo $form_id; ?>" id="<?php echo $form_id; ?>" value="<?php echo $submit_text; ?>" alt="<?php echo $submit_text; ?>" <?php echo $x_or_h; ?>><br <?php echo $x_or_h; ?>>

groogruxking40
08-14-2009, 05:52 PM
Try out this cleaner version of your code... :/


<input type="submit" class="button" onclick="window.open('http://wwww.christiancouriernewspaper.com/upload.html', 'Upload', 'width=400, height=400');" name="<?php echo $form_id; ?>" id="<?php echo $form_id; ?>" value="<?php echo $submit_text; ?>" alt="<?php echo $submit_text; ?>" <?php echo $x_or_h; ?>><br <?php echo $x_or_h; ?>>

huge thanks.
much nicer