Martin Jespersen

less info
10,426 reputation
1035
bio website
location Denmark
age
visits member for 2 years, 4 months
seen 2 hours ago
stats profile views 694

May
18
comment Generic deep diff between two objects
Looks pretty cool, however it fails to detect equality in array data, when the data has shuffled places - it sees everything as changes even though the data is the same. try to do objectDiff.diff({a:[1,'hey',{foo:'bar'}]},{a:[{foo:'bar'},1,'hey']}); and you will see what I mean.
May
10
awarded  Popular Question
May
10
awarded  Nice Answer
May
1
answered Testing for .on() with a .bind() fallback
Apr
26
awarded  Good Answer
Apr
26
awarded  Nice Question
Apr
5
awarded  Nice Answer
Mar
21
reviewed Approve suggested edit on Parent - Child relationship within a single table
Mar
21
reviewed Approve suggested edit on Is loose coupling possible for a web app?
Mar
21
reviewed Approve suggested edit on How do i make that when I make an instance of a new class, it must get a parameter?
Feb
21
awarded  Nice Answer
Feb
1
answered Get current page http status from javascript
Jan
22
revised Make FB.api() calls synchronous
deleted 1 characters in body
Jan
14
comment Make FB.api() calls synchronous
You are missing the point - it is impossible to turn an async call into a sync call, period.
Jan
14
awarded  Nice Answer
Jan
12
awarded  Yearling
Dec
19
comment Replace last occurence of character in string
@Pierpaolo: its not that simple tbh since you can have a word and not just a single char in a variable - you should start a new question about it :) It is too complicated for a comment here
Dec
18
comment Replace last occurence of character in string
@Pierpaolo: You'd have to create the regexp using a new RegExp, read all about it here: developer.mozilla.org/en-US/docs/JavaScript/Guide/… - Remember to escape the replaceMe variable so it doesn't contain special characters that will alter the regular expression
Dec
14
awarded  Nice Answer
Dec
11
comment Is this a valid test to check if a URL refers to an Image in JS/jQuery
@levhita: it will load the entire file before doing any detection with the above code since the onload & onerror handlers only trigger when full load is completed