2
votes
Keeping key value pairs together in HTML <select/> with JQuery?
The HTML tag has an attribute called "value", where you can store your key.
e.g.:
<option value=1>Jason</option>
I don't know how t …
1
vote
Where can I learn JQuery? is it worth it?
I use Prototype, which I like. I'm afraid I don't know JQuery, so I can't compare them, but I think Prototype is worth checking out. Their API d …
0
votes
Things a programmer should know before building a website
Apply the KISS principle.
Put your javascript references (<script> tags) at the bottom of the page. That way …
1
vote
obj is null, javascript
The example you gave doesn't create the "Decline" button, as your question suggests it should. If it should, you might want to look at that.
Of course, if the button already exists, please …
1
vote
run javascript in C#
First, you probably want to consider exactly why you're trying to do this. Is it that you want to use the algorithm from the JS in C#? If so, go ahead. If you want to use C# in client-side code (i. …
