Say I have this text Click me
, and I want a modal window, which contains an iframe to a website (eg., www.google.com
) to come up whenever one clicks on the text.
How should I go about doing this? I did some googling and an example of the iframe
%iframe{:src => "http://www.google.com"}
But I am not sure how I could use it ...
Here's the structure of my view file (html.haml
), I tried something like this (but it didn't work!):
...
%li
= User_name
= link_to 'Click me' %iframe{:src => "http://www.google.com"}
%li
...
Again, how do I open a popup when some one clicks on the 'Click me' text?