To open a window you must use window.open. With jquery you have a
better way to add the event handler.

$('a').click(function(ev){
  window.open('/plans/individual/continue-to-ap-pop.asp',
'Continue_to_Application','width=200,height=400');
  ev.preventDefault();
  return false;
})

Paolo

On Fri, Aug 28, 2009 at 7:59 PM, Luh Hooo Zer<anthonynori...@gmail.com> wrote:
>
> is there a nicer way to open a sized window using jquery other than
> this:
>
> <a onclick="window.open('/plans/individual/continue-to-ap-pop.asp',
> 'Continue_to_Application','width=200,height=400')" href="#">

Reply via email to