Tagged Questions

0
votes
1answer
14 views

JS event handlers. Creating nice CSS button with jquery and integrating with jquery.validate and/or jquery.form

So, i'm writing a plugin using js with jQuery, that will replace all buttons (input type=submit and <button>) on my site's pages with nice buttons that look something like &l …
0
votes
2answers
37 views

jQuery form zip code to state function

I'm trying to convert a preexisting javascript function into a jQuery function. The function comes from http://javascript.internet.com/forms/zip-to-state.html and aims to convert a …
0
votes
0answers
4 views

XUL key tag uage

I need to bind key shortcut to $ sign for < key > in XUL I tried keycode="36", modifiers="shift" key="4", key="$" but nothings seems working. Is there any way to do such thing?
0
votes
0answers
1 views

XUL How to create autocomplete with behaviour similar to context popup.

I need autocomplete feature to be added into the editor which is iframe inside < browser >. The behavior should be similar to context menu (so popup should be shown near the tex …
1
vote
2answers
41 views

js and css on-demand loading

i am confused by the concept of on-demand loading I saw this blog post and was wondering if I could do the same with php using the ff. approach: check current url serve css or j …
0
votes
2answers
17 views

Is it possible to create a TH with TableRow.insertCell()?

I'm adding new rows to a table dinamically, with this code: tbody = document.getElementById('tbody'); tr = tbody.insertRow(-1); tr.id = 'last'; th = tr.insertCell(0); td = tr.inse …
0
votes
3answers
26 views

Jquery get all input values and create an array (with names)

Hay guys, I'm doing some work where i have a large collection of forms. Seems these aren't 'posted' the traditional way (i.e using a submit button). I need a way to collect all the …
0
votes
2answers
17 views

Text Gradient whith sIFR 3

Hi, I want to use sIFR 3 to add a simple linear gradient filter to a text, I can't find this in the ducumentation hope you guys can give me some help. I found an article that sho …
1
vote
1answer
31 views

Eclipse project folder

I have the eclipse setup working pretty well for the java files in my code. But now I want to integrated the JS files also, leaving other XSLs/CSS files. Can I do that? One is addi …
2
votes
3answers
120 views

Working with a severely limited interpreted language

I'm coding in an embedded language called JS. I want to be able to call three functions in any order. (ABC, ACB, BAC, BCA, CBA, CAB.) The trick? The language doesn't have user-de …