If the element is already in the document, you can get its text content and split it based on " ":
var text = "textContent" in document.body ? "textContent" : "innerText",
el = document.getElementById("myElement"),
arr = el[text].split(" "),
first = arr.shift(),
last = arr.pop();
alert("1st word is '"+first+"', last word is '"+last+"'.");
If it's not already an element, make it one:
var arr, first, last,
text = "textContent" in document.body ? "textContent" : "innerText",
html = "<p>The Stack Overflow 2011 community moderator election is underway</p>",
el = document.createElement("div");
el.innerHTML = html;
arr = el[text].split(" "),
first = arr.shift(),
last = arr.pop();
alert("1st word is '"+first+"', last word is '"+last+"'.");
Note: this doesn't take punctuation characters into account - you might want to remove some of them from the string with a simple regex before splitting. Also, if there is only a single word in the text, last will be undefined. If there are no words, 1st will be an empty string, "" and last will still be undefined.
<em>would be handled somewhat by usinginnerTextor the like, rather thaninnerHTML) - it's more complicated than just the example in the question - but if it works for him, good for both of you! – Code Jockey Nov 9 '11 at 16:59