948 reputation
514
bio website ashclarke.com
location Reading, United Kingdom
age 25
visits member for 2 years, 3 months
seen 2 hours ago
stats profile views 114

UI Developer based in Reading


2h
comment Iframe Function Calling From Iframe to parent page javascript function
Why did someone randomly downvote this 9 months later? At least explain why. It's a perfectly valid answer.
May
7
comment Iframe Function Calling From Iframe to parent page javascript function
It will be localhost or the ip address of the machine (typically 127.0.0.1), depending on what is in the url address bar.
May
7
comment How to remove single character words from string with preg_replace
It's ok, I went for a different approach to remove single character searches. Thanks anyway! :)
May
7
comment Javascript Regexp loop all matches
To make the while a little more concise, you can remove !== null and the extra brackets as null is "falsey" and will break the while loop.
May
3
comment JavaScript error top is undefined
I know it's unlikely, but is top being overridden somewhere else with a var top;?
May
3
comment How to remove single character words from string with preg_replace
@poncha +1 Thanks for this, I wanted something to remove single characters from a search string. Would you know how I could modify this so at least 1 single character was left a in the search, a d f g? A search for a d f te would ideally only leave te rather than a te. If you have any thoughts I'd be thoroughly grateful!
May
2
answered IE9 debugger - On the “Script” tab, what are the scripts in the “Others” section when you are debugging?
Apr
23
awarded  Popular Question
Apr
22
comment The opposite of Intersect()
SymmetricExceptWith is probably my favourite method.
Apr
22
revised Find the source of a first chance exception raised in the Visual Studio 2010 Output window
deleted 17 characters in body
Apr
9
revised iOS - Storyboard behavior is weird
title edit
Apr
9
suggested suggested edit on iOS - Storyboard behavior is weird
Apr
5
awarded  Autobiographer
Apr
3
comment How to create a GUID in Excel?
Didn't work in Excel 2010. Had to change 65535 to 65534 and 49151 to 49150. New function: =CONCATENATE(DEC2HEX(RANDBETWEEN(0,4294967295),8),"-",DEC2HEX(RANDBETWEEN(0,6553‌​‌​4),4),"-",DEC2HEX(RANDBETWEEN(16384,20479),4),"-",DEC2HEX(RANDBETWEEN(32768,491‌​50​),4),"-",DEC2HEX(RANDBETWEEN(0,65535),4),DEC2HEX(RANDBETWEEN(0,4294967295),8))
Mar
12
revised Why is the “this” context of these bound functions, the same in each new instance?
added 296 characters in body
Mar
12
accepted Why is the “this” context of these bound functions, the same in each new instance?
Mar
12
comment Why is the “this” context of these bound functions, the same in each new instance?
Ah I see, I think I have forgotten that the prototype is just a shared reference of, I suppose, static methods and that prototype functions are not cloned in to each instance. I don't know how I could have forgotten that >_<
Mar
12
revised Why is the “this” context of these bound functions, the same in each new instance?
added 523 characters in body
Mar
12
comment Why is the “this” context of these bound functions, the same in each new instance?
My thinking was that the Grid.prototype acts as the blueprint for any new Grid instance, and that it would include the namespace Rows as a part of that. So, when I apply the new context of this in the Grid function to this.Rows, this.Rows would initially be a copy, not a reference, of the Grid.prototype.Rows blueprint, which belongs only to that instance. In the Grid constructor, I thought I'd be modifying this.Rows for that instance to be bound to the context of this.
Mar
12
asked Why is the “this” context of these bound functions, the same in each new instance?