Marius

6,920
Reputation
292 views

Registered User

Name Marius
Member for 1 year
Seen 11 hours ago
Website
Location Norway
Age 22
Programmer from Norway
2d
answered Classical vs Prototypal… how are they so different?
Nov
19
answered What is the most spectacular way to shoot yourself in the foot with C++?
Nov
17
accepted AJAX: problem with redirect
Nov
16
awarded  Nice Answer
Nov
16
revised basic javascript question: after 5 seconds, set variable to true.
edited body
Nov
16
answered Which is more efficient?
Nov
16
comment Which is more efficient?
You really shouldn't care, unless this is all you do, thousands of times per second, for several hours.
Nov
16
answered Object is same but the output is different ? please help
Nov
16
comment How to select elements like question1, question2, question3,… in JQuery form validation plug-in?
In that case, there is none.
Nov
16
revised How to select elements like question1, question2, question3,… in JQuery form validation plug-in?
added 542 characters in body
Nov
16
revised How do I submit a form to JavaScript without the submit button?
deleted 6 characters in body
Nov
16
revised How do I submit a form to JavaScript without the submit button?
added 628 characters in body; added 100 characters in body
Nov
16
answered 7.1 < 7.10 - ordering numbers
Nov
16
answered How to select elements like question1, question2, question3,… in JQuery form validation plug-in?
Nov
16
comment How do I submit a form to JavaScript without the submit button?
The form will submit automatically if you hit enter in the textfield. If you want to run the function before submitting, then try onsubmit.
Nov
16
revised How do I submit a form to JavaScript without the submit button?
added 271 characters in body
Nov
16
revised How do I submit a form to JavaScript without the submit button?
edited tags
Nov
16
answered How do I submit a form to JavaScript without the submit button?
Nov
16
revised How do I find the smallest positive integer congruent to i modulo m?
added 200 characters in body
Nov
16
comment How do I find the smallest positive integer congruent to i modulo m?
Javascript and (therefore) ActionScript
Nov
16
asked How do I find the smallest positive integer congruent to i modulo m?
Nov
16
revised new to php - hello world
added 344 characters in body
Nov
16
comment new to php - hello world
Apache works on most OS, and is relatively easy to install. It's also free (not only as in free beer) and works well with PHP
Nov
16
comment new to php - hello world
He edited his question after I answered his question.
Nov
16
answered new to php - hello world
Nov
15
comment Easiest way to execute local file from Firefox?
Writing an extension is not that difficult. Have a google search for it, read some tutorials and then search for "execute local file firefox extenson".
Nov
15
comment Ajax instant messaging (web-based)
what do you mean by "would it be acceptable"?
Nov
15
comment Silverlight? What is silverlight? Does anyone really use it other than microsoft?
lmgtfy.com/?q=silverlight
Nov
15
answered possible to create a form using php code like this?
Nov
15
comment possible to create a form using php code like this?
Right click on the page in the browser, view page source
Nov
14
asked How do I link to a DLL from javascript in XULRunner?
Nov
13
revised JSON with classes?
added 1694 characters in body
Nov
13
asked JSON with classes?
Nov
12
comment Do Small Memory Leaks Matter Anymore?
@McWafflestix, The problem with your bank metaphor is that at the end of the day, the operating system reclaims the memory lost. It's like the bank calls you and says, "Hey, your bank account with $10 000 on it, we lost $0.02 a few hours ago, but they are back now".
Nov
12
answered Do Small Memory Leaks Matter Anymore?
Nov
10
revised Best practice of big javascript objects
added 93 characters in body
Nov
10
comment Best practice of big javascript objects
Right you are :) Fixed.
Nov
9
accepted Best practice of big javascript objects
Nov
9
answered Best practice of big javascript objects
Nov
9
comment How to suppress the browser’s “authentication required” dialog when doing an ajax call that requires authentication?
not true: developer.mozilla.org/en/XmlHttpRequest#open%28%29/…
Nov
9
answered How to suppress the browser’s “authentication required” dialog when doing an ajax call that requires authentication?
Nov
9
accepted Parsing date like twitter
Nov
9
answered Clipboard access using Javascript - sans Flash?
Nov
9
answered Wrap text after perticular symbol with jQuery
Nov
9
answered Is it possible to reload a form after an input type=”file” changes?
Nov
9
answered Parsing date like twitter
Nov
9
comment How do I do OuterHTML in firefox?
If all you want is the onclick, then use elm.getAttribute("onclick").
Nov
9
revised How do I do OuterHTML in firefox?
added 107 characters in body; added 2 characters in body
Nov
9
comment PHP recursive function + array by reference = headache
Another thing, you might need to check that you don't have magic_quotes on in PHP, which will mess with the json string when you send it to PHP as a GET or POST argument.
Nov
9
comment PHP recursive function + array by reference = headache
yes you can. PHP requires that the key be wrapped in "", so you might either do that manually, or check if the stringify function does it for you. Use the JSON object from here: json.org/js.html