popitup = (url) ->
newwindow = window.open(url, "name", "height=200,width=150")
newwindow.focus() if window.focus
false
これは私のコードですが、ポップアップ ウィンドウに表示される URL ではなく、ポップアップを haml ファイルにリンクしたい
%h1 popup
br
%input{:name => "option1", :type => "checkbox", :value => "Milk"}
Milk
%br
%input{:name => "option2", :type => "checkbox", :value => "Butter"}
Butter
%br
%input{:name => "option3", :type => "checkbox", :value => "Cheese"}
Cheese
%br
これは私が使用しているhamlファイルです。