Skip to content

Instantly share code, notes, and snippets.

@imlucas
Created August 20, 2009 18:56
Show Gist options
  • Select an option

  • Save imlucas/171264 to your computer and use it in GitHub Desktop.

Select an option

Save imlucas/171264 to your computer and use it in GitHub Desktop.
$('#blue-box').remove();
$('#account-nav').css('left', $('#account-nav').position().left+'px');
$('#account-nav').css('position', 'absolute');
$('#account-nav').prepend('<div id="blue-box" style="color: #FFFFFF;background-color: #3671B2;height: 90px;display:none;padding:4px;"><form><label>Username or email:</label><br /><input type="text" /><br /><label>Password:</label><br /><input type="password" /><br /><input type="submit" value="Login"/> <a href="javascript:void(0);" onclick="$(\'#blue-box\').slideUp();">Cancel</a></form><div style=""></div></div>');
$('#blue-box').slideDown();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment