0
votes
4answers
85 views
What is the purpose of this JavaScript?
I was playing around with a Python-based HTML parser and parsed Stackoverflow. The parser puked on a line with
HTMLParser.HTMLParseError: bad end tag: "</'+'scr'+'ipt>", at line 649, column 29
…
1
vote
4answers
58 views
IE 6 performance vs. clean, unobtrusive Javascript
Normally I love to keep my HTML code clean, semantic and free from either Javascript or CSS. I include my .JS and .CSS files at the top, and layer functionality on top of the DOM elements.
The …
1
vote
1answer
29 views
Javascript: how to append more text to user copied text ala nydailynews.com
On nydailynews.com when you copy and paste any text from the site, a snippet of text is appended.
Read more: http://www.nydailynews.com/#ixzz0aN123abc
How do they achieve this?
I have …
0
votes
3answers
52 views
Very basic HTML/scripting/active page question
Hi,
A friend has asked me for help with her website design. Although I know a fair amount about the basics behind HTML, XML, Php, ASP.Net, javascript, etc., I'm not really comfortable sitting down …
1
vote
1answer
18 views
dojo.require() prevents Firefox from rendering the page
Im experiencing strange behavior with Firefox and Dojo. I have a html page with these lines in the <head> section:
...
<script type="text/javascript" src="dojo.js" djconfig="parseOnLoad: …
0
votes
2answers
49 views
Unable to Hide Vertical Scroll Bar on Web Page
I am displaying an HTML page within another HTML page depending on which link is selected using the following function:
function loadProject(sel) {
var url = sel[sel.selectedIndex].value;
…
0
votes
4answers
77 views
How do you access the text in a <caption> tag?
I have my HTML like this:
<table>
<caption class="my_caption">Table 1.1: TABLE CAPTION</caption>
<tr>...</tr>
<tr>...</tr>
...
I need to get the …
1
vote
1answer
42 views
Get relative path to image
I wrote a javascript method to display an image dynamically depending on whether or not a plugin is installed or not. Depending on the page, the url might be deep into sub paths and i wanted to see if …
0
votes
3answers
46 views
submitting form from textarea
how can i submit a form on enter pressed while i amm typing in textarea........if i hit enter it only breaks a line but not submits the form.
2
votes
2answers
32 views
toggle text input value and search
Hi I'm having problems with toggling/searching with my text input, here is a function which I use:
function toggleSearch(obj) {
var el = document.getElementById(obj);
el.value = …
1
vote
5answers
52 views
How do I determine an HTML input element type upon an event using jQuery?
Given the following sample code:
$(document).ready(function(){
$(":input").blur(function(){
alert("The input type is:" ); //How would this look??????
})
});
How can I detemine …
1
vote
4answers
139 views
How to reload a html page when your code changes
I remember watching a jquery demo by John Resig. He had a browser application that reloaded live while he was coding. I think he did not even have to save his code changes for this to happen ( see …
3
votes
2answers
40 views
Meta Refresh: Count starts after page load or before?
<meta HTTP-EQUIV="REFRESH" content="0; url=http://www.yourdomain.com/index.html">
Does the count start from full page load or as soon as the page is loading.
Having tested it, it looks to me …
1
vote
4answers
67 views
javascript/css replacement for <select>
Yeah sorry I actually asked this question already except I dont think anyone understood what I was asking.
I am asking how to produce an html list which is styled as in this picture below:
…
1
vote
3answers
29 views
Chrome Browser Action click not working
I am trying to create chrome extention, however my browser action click does not work! I've tried pretty much everything. Here is my setup:
manifest.json:
{
"name": "blah",
"version": "1.0",
…
