Tagged Questions
2
votes
1answer
168 views
Cannot draw italic text in Firefox canvas
When drawing italicized text in canvas, Firefox would render them as normal for fonts like Impact.
var ctx = canvas.getContext('2d');
ctx.font = "italic 40px Impact";
ctx.fillText("Impact", 0, 40);
...
1
vote
1answer
268 views
javascript: find/replace regexp help - bold, italic and specific characters
the HTML/concept:
<textarea id="input"></textarea>
<button onclick="format()">submit</button>
<textarea id="output"></textarea>
I regularly ...
1
vote
2answers
716 views
Knowing the text selected using mouse in javascript
I my application i want to make the text seleected selected using mouse bold..How to do this using javascript?
Also how to know the cursor position using javascript...For example ,i may need to ...