2
votes
4answers
857 views
Removing elements with Array.map in JavaScript
I would like to filter an array of items by using the map() function. Here is a code snippet:
var filteredItems = items.map(function(item)
{
if( ...some condition... )
{
…
3
votes
5answers
3k views
What’s a good bit of JS or JQuery for horizontally scrolling news ticker
Hi,
I am looking for a little bit of JQuery or JS that allows me to produce a horizontally scrolling "news ticker" list.
The produced HTML needs to be standards compliant as well …
4
votes
7answers
1k views
Why doesn’t my form post when I disable the submit button to prevent double clicking?
Like every other web developer on the planet, I have an issue with users double clicking the submit button on my forms. My understanding is that the conventional way to handle thi …
1
vote
3answers
87 views
How is callback with arguments executed?
Hi
I got acquainted with jQuery a few days back and am beginning to realize the little magic it can do.
I am curious to know how exactly a callback with arguments is executed in …
0
votes
2answers
473 views
Override members on a built-in JavaScript object
I would like to override the default behavior of the offsetParent member of all html elements. I would like to do something like this if it's possible:
// For <div id="foo"> …
6
votes
9answers
4k views
What are alternatives to ExtJS?
So what I'm looking for is a javascript framework I can use that has several UI controls. I have taken a look at jQuery but those controls are very basic compared to ExtJS. Are the …
1
vote
3answers
261 views
Generate HTML Table Client Side
(ASP.NET Web Application) I'd like to create a page which allows the user to build an HTML table. The user will be provided with the following controls: a textbox used to define t …
4
votes
9answers
184 views
How do you avoid duplication of validation on the server and client-side?
How do you avoid duplication of validation on the server and client-side? Is there a web programming platform that generates one from the other, so I don't have to keep the two in …
0
votes
4answers
363 views
Data processing in HTML without server code (using just Javascript)
I was just wondering whether there is some way to do this:
I have a form in a web page, after the user submits the form, the page is redirected to another static HTML page.
Is th …
1
vote
7answers
2k views
Xsl relative path for xsl:import or xsl:include
I am trying to use VBSctipt to do an xslt transform on an xml object.
The xsl file I'm translating includes the <xsl:import href="script.xsl"/> directive. If I use the absol …
0
votes
3answers
638 views
Access DOM elements after ajax.load
I am inserting the HTML response from an AJAX call into my page, but then when I try to access those elements after they have been created, it fails..
This is how i retrieve and i …
0
votes
1answer
79 views
How can I debug JS code in CSSEdit??
Yeah, sounds silly but I'm a designers and the site I'm working on is not working in CSSEdit. Which is bad for me, very bad. The site has a massive JS/Ajax client and works in all …
2
votes
5answers
727 views
Sending emails with Javascript
This is a little confusing to explain, so bear with me here...
I want to set up a system where a user can send templated emails via my website, except it's not actually sent using …
0
votes
3answers
169 views
ASP.NET AJAX: How to get a client instance created with the $create method?
Hi,
Using the client-side ASP.NET AJAX library, I have created an instance of a client component with the $create shortcut-method (http://msdn.microsoft.com/da-dk/library/bb397487 …
7
votes
4answers
536 views
Getting the text from a drop-down box
This gets the value of whatever is selected in my dropdown menu.
document.getElementById('newSkill').value
I cannot however find out what property to go after for the text …
