Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a simple calendar popup window come up when a date on the calendar is clicked. The code below works in Opera, FF and Chrome but not in IE8 (I don't have 9 on this notebook yet). It comes up with the Error on Page at the bottom and shows the error invalid argument.

<div class="day-number">1</div>
<td class="calendar-day" onclick="window.open('http://www.cal.com/admin/editevents.php?day=2&month=4&year=2011', 
'Edit Events', 'scrollbars=1,width=600,height=475');">

Could someone help me out and spot what I'm doing right but wrong according to good ol' IE?

share|improve this question
possible duplicate of window.open throws invalid argument in IE7-8-9b – Pekka 웃 Apr 26 '11 at 13:18
@Pekka Could be but the question is different. That question also did not come up when asking this question. – Baez Apr 26 '11 at 13:23
the comment above is created automatically by the system when one votes to close a question as a duplicate of another. It wasn't meant as an accusation that you didn't search :) But it clearly is a duplicate. – Pekka 웃 Apr 26 '11 at 13:24

2 Answers

up vote 12 down vote accepted

The window name shouldn't have a space. Try EditEvents.

share|improve this answer
Great I will try it out now. – Baez Apr 26 '11 at 13:27
window.open(theURL,winName,features);

ex: window.open('google.com','Edit Events','width=100'); //false

window.open('google.com','EditEvents','width=100'); //True

=> Edit Events //false

EditEvents //true

=>winName doesn't have spaces.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.