nickf

34,963
reputation
1861 views

Registered User

name nickf
member for 1 year
seen 1 hour ago
website
location Brisbane
age 25
Just a guy who likes to code. Call me weird.
9h
revised Does anyone know when jQuery 1.3.3/1.4 will be released?
added 162 characters in body
14h
answered receiving data in php through jquery ajax
16h
comment PHP remove HTTP header
"Caching is easy; Expiration is hard"
1d
comment Can I use APC AND memcached on the same server ?
"You still get a benefit if you only have a single server because using memcache will help you scale in the future if you need to branch out to more boxes." -- so there's no benefit on a single server?
1d
accepted Can I use APC AND memcached on the same server ?
1d
revised calling jquery facbox from button click
improved formatting
1d
answered Can I use APC AND memcached on the same server ?
1d
awarded  Popular Question
2d
answered Postgresql Select * from table performance vs MySql
Dec
17
comment Need the CSS a.tag is not cooperating
left-nav? if we're going for semantic, how about just nav
Dec
17
comment regular expression for French characters
or "Je suis un Piñata"
Dec
17
comment regular expression for French characters
woo! -1 and accepted!
Dec
17
answered regular expression for French characters
Dec
17
comment how i can get variable in the class
visibility isn't just about keep other people's hands off your data - it's for your own grubby hands, too! by declaring something as private, you know with 100% certainty that neither you nor anyone else is using it in some other code, so you're free to alter it or remove it in the future without having to trawl through your entire project cleaning up all the places where someone was too lazy to use proper accessors.
Dec
17
answered Dynamically creating instance variables in PHP classes
Dec
17
answered Is it possible to access a web page’s unparsed CSS text?
Dec
17
comment Syntax error before ‘{’ token when declaring a class in cpp standards .
i think there's a syntax error in your question title.
Dec
16
accepted Does anyone know when jQuery 1.3.3/1.4 will be released?
Dec
16
answered Does anyone know when jQuery 1.3.3/1.4 will be released?
Dec
15
accepted What is the most suitable tool to create/maintain a help file?
Dec
15
answered What is the most suitable tool to create/maintain a help file?
Dec
15
revised post variable problem
fixed grammar corrected spelling
Dec
15
answered jquery prepend + fadeIn
Dec
15
answered PHP: Why Many Types of String Types And Multiple Implementations Of functions?
Dec
15
comment Disable events triggered on HTML <SELECT> control
then the onclick functions don't fire.
Dec
15
answered Storing large prime numbers in a database
Dec
14
revised What is the best way to track changes in a form via javascript?
changed to using the :input selector
Dec
14
comment How to select an object if it contains a number with jquery?
not a very common scenario, but this : <span>025</span> would be matched by this: $("span:containsNumber(31)"). Always add the second parameter to parseInt! eg: parseInt(m[3], 10)
Dec
14
comment how to add anything in <head> through jquery/javascript ?
Read the documentation: docs.jquery.com/Manipulation insertBefore, insertAfter is what you want.
Dec
14
answered how to add anything in <head> through jquery/javascript ?
Dec
14
answered Surrounding all content in div with span - why?
Dec
14
awarded  Popular Question
Dec
13
comment getElementById from iframe
thanks bobince, that's been added to the answer now.
Dec
13
revised getElementById from iframe
added 52 characters in body
Dec
13
comment How can I add spaces between two <input> lines using CSS?
Steven, read the link.
Dec
13
revised getElementById from iframe
added 372 characters in body
Dec
13
comment getElementById from iframe
editing the answer...
Dec
13
accepted getElementById from iframe
Dec
13
answered javascript cookie, little help please…
Dec
13
answered getElementById from iframe
Dec
13
answered Using regular expressions to change HTML
Dec
13
answered how can delete one row from MySQL??
Dec
13
comment Why is the corresponding statement not executed even if echo empty($location) prints out 1
ok, well think it through: $location = 20000, therefore $location % 10000 == 0) is true. 20000 == true is true, therefore it works. If you really want to stick with this format for some reason change your switch statement to be: switch (true) {
Dec
13
accepted Why is the corresponding statement not executed even if echo empty($location) prints out 1
Dec
13
answered Large double quotes: best way to add them
Dec
13
answered Why is the corresponding statement not executed even if echo empty($location) prints out 1
Dec
13
comment Reg Exp To Remove ‘onclick’ from HTML elements (Notepad++)
you didn't try this one did you... it would turn this: <a onclick="something" href="blah"> into this: <a >
Dec
13
answered Reg Exp To Remove ‘onclick’ from HTML elements (Notepad++)
Dec
12
answered How do I get the onclick variable into a dialog function.
Dec
11
comment Simplest code for array intersection in javascript
don't ever use for .. in on arrays. ever. geez.