Helper to Display Rails Flash Messages
def flash_helper f_names = [:notice, :warning, :message] fl = '' for name in f_names if flash[name] fl = fl + "<div class=\"notice\" id=\"#{name}\">#{flash[name]}</div>" end flash[name] = nil; end return fl end
11376 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
def flash_helper f_names = [:notice, :warning, :message] fl = '' for name in f_names if flash[name] fl = fl + "<div class=\"notice\" id=\"#{name}\">#{flash[name]}</div>" end flash[name] = nil; end return fl end
<body> <div id="wrap"> <div id="top"> </div> <div id="content" class="single"> <div class="post-wrap" id="post-6"> <h1 class="post-title">The Title Of Your Post</h1> <div class="story-content"> </div> <div class="metawrap"> </div> </div> <div id="commentwrap"> <h3 id="respond">Leave Your Comment</h3> <form> </form> </div> </div> <div id="side"> <ul> <li><!-- One side bar item --></li> </ul> </div> <div id="bottom"></div> </div><!-- end wrap --> </body>
function copyOptions(from , to) { for (var i=0; i < $(from).options.length; i++) { if ($(from).options[i].selected) { var optionName = new Option($(from).options[i].text, $(from).options[i].value); $(to).options[$(to).length] = optionName; } } remove($(from)); } function remove(theSel) { var selIndex = theSel.selectedIndex; if (selIndex != -1) { for(i=theSel.length-1; i>=0; i--) { if(theSel.options[i].selected) theSel.options[i] = null; } if (theSel.length > 0) theSel.selectedIndex = selIndex == 0 ? 0 : selIndex - 1; } }
//By default, getTimezoneOffset returns the time zone offset in minutes setCookie("timezone", new Date().getTimezoneOffset()/60); function setCookie(name, value, expires, path, domain, secure) { document.cookie= name + "=" + escape(value) + ((expires) ? "; expires=" + expires.toGMTString() : "") + ((path) ? "; path=" + path : "") + ((domain) ? "; domain=" + domain : "") + ((secure) ? "; secure" : ""); }