search for: somelink

Displaying 5 results from an estimated 5 matches for "somelink".

Did you mean: homelink
2006 Mar 31
7
Reset events after ajax update
Avoiding real work I decided to try and clean up my html and remove my inline onclick handlers for Ajax.Updater calls. Here''s the inline method I''ve been using: http://hank.org/demos/ajax-inline.html Now, here''s using <script> sections to apply the behavior. http://hank.org/demos/ajax.html (firefox only) Since the links (tabs) are inside the
2006 Mar 03
3
embedding a forum inside a rails app
what is the best way to embed a forum (phpbb is currently installed under /public/forums/) inside my layout ? I dont want the foum to be its own page i would like it to appear inside the main part of the page with navigation and border in tact. is this possible with the current way it is installed ? thanks adam -------------- next part -------------- An HTML attachment was scrubbed... URL:
2007 Aug 16
4
prototype: Event.observe 'click' for $$('a.popout')
Hi all first time im posting here, hope what i''ve written is clear. I''m trying to make a popup work using event.observe for all anchor tags with the CSS selector ''popup''. in the HTML i have this: < a href="somelink.php" class="popup">Click to go someplace </a> in my javascript I have a: Event.observe(window, ''load'', function (){ }); wrapper with code inside the event.observe code inside 1. heres the 1st method I tried: $$(''a.popout'').each( fun...
2009 Apr 23
8
how to avoid (Net::SMTPFatalError) "555 5.5.2 Syntax error
..._code = MailingList.find_or_create_by_email(recipients) if @unsubscribe_code.code.nil? @unsubscribe_code.code = Digest::SHA1.hexdigest( Time.now.to_s.split(//).sort_by {rand}.join ) @unsubscribe_code.save end @body[:unsubscribe_link] = "<a href=''http://www.somelink.com/unsubscribe/#{@unsubscribe_code.code}''>click here to unsubscribe<\/a>" MassNotifier.delivery_method = :activerecord @recipients = "#{recipients}" @from = "#{sender}<aaa-hTYexaC8S7c@public.gmane.org>" @subject = "Check out t...
2006 Jul 14
4
Help with link_to_remote or javascript generator
...AJAX calls using the link_to_remote helper or the JavaScript generator update_page. I have googled and read the docs for both, but can''t seem to figure out exactly what i need to do. Say I have the following html: <div id="div1"></div> <div><a href="somelink" id="link1">Insert text</a></div> When I click on the "Insert text" link I want that div to drop away (i.e. effect.drop), call an action that manipulates the id paramater a little bit (let''s say it will concatenate "This is" to the text) a...