That's Javascript right? The only reason your regex doesn't behave the way you want is because of the \W. It searches for matches in order. But since you have \W around each word it will match a non-word character. In this case, spaces. So the first match is of (note the spaces on both sides) and then it continues searching, but there are no more matches since the string the Y doesn't have any match because there is no non-word character before the. If you change your \W to \b (which matches the empty string at a word boundary, it will work the way you want:
var original = "X of the Y";
var result = original.replace(/\b(the|of|at)\b\s*/g, "");
// Now result = "X Y"
Justin commented suggested I take the \b out of the parenthesis, which makes sense. It's nicer to read, more concise, and technically slightly faster for the regex engine to execute.
I also changed the \W at the end to \s* to match white-space, and replaced the matches with the empty string instead of a space, so that each word leaves the spaces that were in front of them, but deletes the spaces that are after. Meaning that if each word is separated by one space to begin with, the result will have one space between each word too.
(foo|bar)+)? Not sure ifreplacehere would handle that. – Daniel DiPaolo Jul 28 '11 at 20:20replaceis not defined by the regex, and languages differ in their support of the various regex syntax elements – Daniel DiPaolo Jul 28 '11 at 20:42