Actually, it's not a typo, it's protocol relative URL, however, if you access your script via a local file, it will try to request it via file://, which won't work...
I don't like using a form without a submit button. After all, it's a form and when you are done with it, you should submit it; that's the default action. Your suggestion should work as...
The JS code is working swell, although it makes some risky assumptions. The problem you have is that you submit the form with that button, so the whole page reloads and you can't see the results.
...
Yes, you do need to include that google hosted thingy, since it's a jQuery library and without it, you can't use any of that $(something) fancy stuff. However, you have a typo in it's address:
...
Yeah, you're welcome. I usually use solution suggested by PPK, which is to use opacity, filter and -ms-filter in that order, so it would work in IE8 compatibility mode with IE7.
I know nothing about Wordpress, but that doesn't look like a code you should edit. I believe you are supposed to use some simpler API rather than modify their libraries.
That seems to be just a CSS issue. In your styles, you define .active sooner than .menu, so .menu has precedence. Either define .menu first or define .active more specific like .menu.active :)
Well, i don't know why's that happening. I am not familiar with editor-plugin.js, but it appears to be something too difficult to touch. There should be some nice and easy to use API for that...
Well, i am not 100% sure, but i believe it's because IE needs the message data to be of type string. As mentioned in this article, even earlier versions of FF required it. To be most cross-browser...
It's not really dependent on which link the user clicks, but on the number of links visited since the main page load, right? Because that's how you described it...
My guess is, that you have multiple eventListeners for the same event. Do you call that function more than once? On every click? Maybe you could extract the necessary code including HTML and post it...
I believe it's because of the document.write, that precedes it. document.write generates a whole new page and therefore, there are no longer any #poop or #poops inputs. Try using something else. Add...
Well, the JS part is easy for me, but i don't want to invent your UI. Forget my sample. Do the HTML part with some styling, use appropriate captions for buttons, text input fields, position it, so it...