Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So the basic workflow is this:

  1. Asynchronous file upload of font (this is already done).

  2. Get the URL (done)

  3. Change the font to the new URL

I realise this needs to be done via font-face, but I can't seem to figure out how to access that via JavaScript.

share|improve this question

1 Answer

up vote 3 down vote accepted

You can create a new <style> element with the @font-face rule and append it to the document's head:

var newStyle = document.createElement('style');
newStyle.appendChild(document.createTextNode("\
@font-face {\
    font-family: '" + yourFontName + "';\
    src: url('" + yourFontURL + "') format(yourFontFormat);\
}\
"));

document.head.appendChild(newStyle);

Of course, you'll probably need to provide all the necessary font formats and URLs, too, unless you're only worried about support for modern desktop browsers (in which case you would just use WOFF – I assume that's reasonable, because of the other features you mentioned).

share|improve this answer
Now, I understand. I was thinking he mean the html tag <font> with the face attribute and that he wanted to write it in Javascript. +1 – Mark Linus Jul 6 '12 at 2:53
She -_-;;;. Oh the internet... Women can't do computer science. That'd be mad! – Lani Alden Jul 6 '12 at 3:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.