2
votes
jquery: hide/show something after form submit/page reloads
You can assign a handler to the 'submit' action of a form and do whatever you like with it. Send it asynchronously, remove the form again, leave it there, whatever. Here's a starting point:
…
0
votes
Display JSON as HTML
Your best bet is going to be using your back-end language's tools for this. What language are you using? For Ruby, try …
4
votes
Help! TinyMCE is reformatting my code!
You're specifying the format as xhtml and divs cannot be self-closing -- that's why it's fixing it for you. If you want it to be exactly as you say then you'll need to cha …
1
vote
calling a variable inside html
It's just the one line that's causing the problem:
var newHTML = "<span style='color:" + userInput + "'>" + oldHTML + "</span>";
…
1
vote
Does the Browser store the calculated coordinates of a div in accessible variables?
It does indeed. Unfortunately it's pretty difficult to get that information out reliably due to browser inconsistencies and general ugliness of raw DOM access.
I suggest …
1
vote
highlighting disabled in browser
Very difficult to do this cross-browser. I usually just assume that IE users are used to stuff looking a little off/wont notice the highlight/etc. I use this snippet which uses jQuery but should be …
