1

How to open a new window like "_blank" in Raphael?

alex
  • 479,566
  • 201
  • 878
  • 984
DSanchez
  • 11
  • 1

1 Answers1

2

Just use the standard JavaScript method...

window.open('url', '_blank');

Raphael is a vector drawing library, so it shouldn't have an open in new window function.

alex
  • 479,566
  • 201
  • 878
  • 984