Search Results

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

Why do I receive a q[num] error when aborting a jQuery queue pipeline?

It looks like you've got fewer items in q than you were expecting when you started iterating. Your script may be trying to access q[q.length], i.e. the element after the last element. Could …
1
vote

Why do I receive a q[num] error when aborting a jQuery queue pipeline?

Hi Sean, thanks for the tick. I'm curious as to what the actual problem was, because I suggested a few possibilities there. Did you narrow it down? …
1
vote

Jquery asp.net Button Click Event via ajax

I like Gromer's answer, but it leaves me with a question: What if I have multiple 'btnAwesome's in different controls? To cater for that possibility, I would do the following: …
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 …
0
votes

jquery .each question

Should it matter? If you're writing a .each function, you should be doing the same thing to every element. Otherwise you should use some other method. Hence, the order in which the elements appear …