This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Description: | |
| When signing up as a new user, in "/signup," the "Create User" button will postback to "/users." Not that big a deal, until the submitted form fails validation, in which case the postback url will be "/users." I don't like going to "/signup," only to see "/users" if my form fails validation. | |
| The following is what I did to remedy this, seems simple, but am not sure if there is a "better" way? Suggestions? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <% In your View. Note: :rel=>"nofollow" so that it's not crawled. %> | |
| <%= link_to "Tooltip Link Text (Just Mouse Over)", "javascript:void(0);", | |
| :id => "tooltip_id", :rel => "nofollow", :title => "This is the Tooltip Popup Text." %> |
NewerOlder