JacobM
|
Registered User
|
Senior developer at Yale University
|
|
20h |
awarded | ● Citizen Patrol |
|
21h |
comment |
Get the selected option from a list Since the value of a select is the value of the selected option, you don't need the ":selected" -- $("select").val() is sufficient. |
|
21h |
answered | Get the selected option from a list |
|
1d |
answered | How much access should an OS give to web-based scripting? |
|
1d |
comment |
onClick does not work properly on p tag Exactly. What you've done is assigned the click event to a call to a function (i.e. call the function now, and assign the result to the event). What you want is to actually assign the event to a function. |
|
2d |
comment |
Adding Data To An Input Field If they don't want to hit an intermediate URL that will do the concatenation for them, then Javascript is what's left. Yes, it will not work for some users. |
|
2d |
comment |
Adding Data To An Input Field I think what the poster is asking for is a way to concatenate the locale and other data, along with the actual query, into a single field (as expected by whatever they're using on the backend). |
|
2d |
answered | ruby object.hash |
|
2d |
accepted | JQuery keeping addClass stored after page reload |
|
2d |
answered | HTML data entry |
|
2d |
revised |
JQuery keeping addClass stored after page reload added 135 characters in body |
|
2d |
comment |
problem with login page ruby on rails Do you have a "private" method within your controller? |
|
2d |
answered | JQuery keeping addClass stored after page reload |
|
2d |
answered | #region analogue for eclipse |
|
Nov 19 |
comment |
Is it better to have code duplication and have it be very simple/readable, or have no duplication (using generics) but be much more complicated? Voted up for some useful examples. |
|
Nov 19 |
comment |
Is it better to have code duplication and have it be very simple/readable, or have no duplication (using generics) but be much more complicated? Couldn't agree more. |
|
Nov 19 |
comment |
Trouble with jQuery and .attr(’value’) When you changed the case in the jquery call, I assume you also changed the case that was defined in the HTML? |
|
Nov 19 |
accepted | How to simulate a click in javascript? |
|
Nov 19 |
comment |
How to simulate a click in javascript? Truly jquery is the bomb. |
|
Nov 19 |
answered | How to simulate a click in javascript? |
|
Nov 19 |
answered | Is it better to have code duplication and have it be very simple/readable, or have no duplication (using generics) but be much more complicated? |
|
Nov 19 |
comment |
Is it better to have code duplication and have it be very simple/readable, or have no duplication (using generics) but be much more complicated? Generics isn't just about collections; if I have multiple methods that do similar things but differ by parameter type, I prefer to replace them with a single method that takes a generic type. Some developers seem to find that confusing. |
|
Nov 19 |
comment |
AJAX/Javascript Error Ruby on Rails… Can you identify where the code snippet referenced in the error message ("((position == 'before' || position == 'after')? element.parentNode : element)") appears? It doesn't seem to be in any of the samples you posted here. |
|
Nov 19 |
answered | Select rows that are different in SQL |
|
Nov 19 |
answered | How to get the day of year in ruby? |
|
Nov 19 |
answered | Asp.Net script in external js file |
|
Nov 18 |
comment |
cost of logging ip address for user activity Ah, gotcha. Well, I'd be careful with this, since users behind a proxy (including AOL users) may share an IP address but actually be different people. |
|
Nov 18 |
answered | In jQuery, how can I select different elements by the name attribute? |
|
Nov 18 |
revised |
Cleaner way to translate index into specified string? edited title |
|
Nov 18 |
comment |
Cleaner way to translate index into specified string? I like this approach, but I'd probably specify the indexes rather than use the "minus one" thing: array(1=>"Sorcerer", 2=>"Druid",...). This way you're not stuck with the automatic indexes -- what if you decide to eliminate one or skip one later? |
|
Nov 18 |
answered | PHP specific - clean code, naming conventions and documentation |
|
Nov 18 |
answered | cost of logging ip address for user activity |
|
Nov 18 |
answered | attribute name for serial or parallel |
|
Nov 17 |
accepted | Spring formBackingObject, Business Object Creation, and Factories |
|
Nov 17 |
accepted | some quick help with this small piece of code… |
|
Nov 17 |
answered | some quick help with this small piece of code… |
|
Nov 17 |
comment |
SimpleFormController help Glad to hear it! |
|
Nov 17 |
accepted | SimpleFormController help |
|
Nov 17 |
accepted | Javascript: Open 1+ links (that dont have content) |
|
Nov 17 |
accepted | How can i prevent that users browse my site with a specific browser? |
|
Nov 16 |
comment |
Can foreign keys hurt query performance By "query", do you mean SELECT? Because I would think that referential integrity checks would only affect INSERT/UPDATE/DELETE in terms of performance. |
|
Nov 16 |
comment |
How to attach a file to an email using JavaMail Good suggestion; I definitely wouldn't add Spring just for this purpose, but many folks are using it already. |
|
Nov 16 |
answered | How can I pass a variable as an option when creating a jQuery UI accordion? |
|
Nov 16 |
answered | How to attach a file to an email using JavaMail |
|
Nov 16 |
comment |
JavaScript spam filter Not without really really a lot more info. E.g. your code, the output from the validator, etc. Also note that this validator checks for valid markup (e.g. HTML), not javascript. If you want to "validate" your javascript you might want to look at jslint (jslint.com). |
|
Nov 16 |
comment |
Complexity with Array.min What would you want to get if there are, say, several 1s in your array? |
|
Nov 16 |
comment |
Complexity with Array.min That won't determine the index (in the original array) unless you add step 4 where you go back to the original array and search for the value you found in step 3. Not the most efficient approach. |
|
Nov 16 |
revised |
How to center Google Map on a country by name added 187 characters in body |
|
Nov 16 |
answered | How to center Google Map on a country by name |
|
Nov 16 |
comment |
How can i prevent that users browse my site with a specific browser? I've heard using computers also makes it easy to download mp3s. Better block those. Also smart phones. |
