|
May
10 |
|
awarded | Informed |
|
May
7 |
|
awarded | Good Answer |
|
Apr
26 |
|
accepted | Why does the contentEditable's caret disappear when it is scaled down in Firefox, IE? |
|
Apr
26 |
|
answered | Why does the contentEditable's caret disappear when it is scaled down in Firefox, IE? |
|
Apr
25 |
|
revised |
Why does the contentEditable's caret disappear when it is scaled down in Firefox, IE? added test results for IE 10 |
|
Apr
25 |
|
revised |
Why does the contentEditable's caret disappear when it is scaled down in Firefox, IE? added firefox and IE tags |
|
Apr
25 |
|
awarded | Promoter |
|
Apr
23 |
|
awarded | Tumbleweed |
|
Apr
16 |
|
asked | Why does the contentEditable's caret disappear when it is scaled down in Firefox, IE? |
|
Mar
11 |
|
answered | Windows: install fonts from cmd/.bat file |
|
Mar
11 |
|
comment |
How do I pass option flags to Folder.CopyHere in PowerShell? Did you try Remove-Item with -Force to see if the "font in use" prompt goes away? I found a reliable script here that will remove existing fonts first, and it handles multiple font style names: social.technet.microsoft.com/Forums/fr-FR/winserverpowershell/… |
|
Mar
7 |
|
comment |
Wait/Sleep inside Azure WebRole OnStart method There are initialisation timeouts. Microsoft Services told me that roles have 15 minutes to enter the ready state otherwise other update domains are brought down for updates. This means all of your roles could be brought down at once. Our Azure app just got caught out - during an automatic Azure OS upgrade, a worker role took over 15 minutes to do its start tasks (a problem of ours) and then Azure started upgrading roles in the other Update Domain. This meant roles in both update domains - and our app - were down at the same time. |
|
Feb
7 |
|
awarded | Nice Answer |
|
Dec
18 |
|
comment |
Losing selected text from contenteditable on clicking div with css user-select: none; No problem. I have put this as the answer below so you can close off this question. |
|
Dec
18 |
|
answered | Losing selected text from contenteditable on clicking div with css user-select: none; |
|
Dec
14 |
|
comment |
Losing selected text from contenteditable on clicking div with css user-select: none; I have a similar setup, and the following solution works fine in Chrome: stackoverflow.com/questions/2700000/… |
|
Oct
21 |
|
comment |
Styling contentEditable lists (<li>) with font-family, font-size, and color I'm having this issue too. contentEditable/execCommand always wants to surround text nodes with <font> or <span>. Doesn't style the parent block element even if all text is selected within. Annoying! |
|
Sep
17 |
|
awarded | Yearling |
|
Aug
21 |
|
comment |
How to type a new line character in SQL Server Management Studio +1 because I got here from Google searching for "management studio newlines" and this solved my problem. |
|
Aug
15 |
|
comment |
Browser executes one $.ajax async request at a time when multiple requests are sent You're probably right. In fact this type of question has been asked before and the answer was the same: stackoverflow.com/a/4903453/450141 |