GOK
GOK

Reputation: 2428

Browser Resize using jQuery

I have a application logic page, in which we have to make it re-size to maximized state; i got some solutions on the internet but they say about window resize using resizeTo() or resizeBy(). But somehow Chrome doesnot allow these functions.

I need to make the browser to be maximized in Chrome and IE8. Please say me some suggestions or someone has faced this issue earlier.

Thanks in advance!!1

Upvotes: 0

Views: 85

Answers (1)

insertusernamehere
insertusernamehere

Reputation: 23580

You can't force this as:

  • Chrome may not implement this in the near future: Issue 2091: window.resizeTo() doesn't have any effect
  • in IE the security zones can prevent this and other events/actions from being fired
  • in IE it might only work (if security zone allows it) if you open the link in a new window

Upvotes: 1

Related Questions