J-P

7,512
reputation
526 views

Registered User

name J-P
member for 1 year
seen 1 hour ago
website
location Hampton, UK
age 89
Not average.
2h
comment recording durations in milliseconds using jQuery?
Shorter alternative to new Date().getTime(): +new Date
2h
answered get and set selected value
9h
comment Determine original size of image cross browser?
That won't work with images that aren't loaded yet. It might be worth adjusting it to work properly for other people stumbling across this answer.
2d
comment Very basic question about Javascript code execution
Why is this a community wiki?
2d
accepted getting div current placement
2d
comment Displaying DIVs inline with jQuery
What's wrong with $('div.className').css('display', 'inline'); ?
2d
answered getting div current placement
2d
comment javascript - arguments.callee.toString() and arguments.callee.name does not return function name
Can I ask, why do you want/need to do this?
2d
revised Can anyone explain namespace in javascript with an example?
added 8 characters in body
Dec
19
comment How do you make an element “flash” in JQuery
Updated pulse plugin: james.padolsey.com/javascript/…
Dec
18
answered How do I make Ajax calls at intervals without overlap?
Dec
18
comment quick javascript function help…
Care to explain the downvote?
Dec
18
answered quick javascript function help…
Dec
18
comment using a button instead of a checkbox to check all checkboxes in jquery
Why use data() when you can simply store the checked value in a locally accessible variable?
Dec
18
answered using a button instead of a checkbox to check all checkboxes in jquery
Dec
18
comment How to remove li from ul within a div
@Crescent, See the answer by Kangax here: stackoverflow.com/questions/1359469/… ... The recursive-DOM-walking approach is the simplest way to make sure it works properly in all browsers.
Dec
15
comment What are good JavaScript OOP resources?
Shouldn't this be a community wiki?
Dec
14
comment What is the difference between .empty().append() and .html() in jQuery?
Not answering the OP's question...
Dec
14
revised How to remove li from ul within a div
added 94 characters in body
Dec
14
revised How to remove li from ul within a div
added 5 characters in body
Dec
14
answered How to remove li from ul within a div
Dec
12
comment Determining if a javascript object has a given property
That would fail with x = {y:undefined}
Dec
12
answered How to convert a string value to a variable in javascript?
Dec
11
accepted javascript or css trick to group spans without separating them when one reaches the edge of browser
Dec
11
answered javascript or css trick to group spans without separating them when one reaches the edge of browser
Dec
7
revised JavaScript exit method
edited body
Dec
7
comment Why does jQuery use “new jQuery.fn.init()” for creating jQuery object but I can’t?
jQuery probably uses this technique to separate the constructor-functionality from the generic wrapper function (jQuery()). They could do it either way, it's probably a decision that was made very early on in jQuery's development and hasn't changed because it seems to work effectively...
Dec
7
accepted Regex to find word on page including inside tags.
Dec
6
answered Why does jQuery use “new jQuery.fn.init()” for creating jQuery object but I can’t?
Dec
5
accepted Using Javascript to Measure the Current Window
Dec
5
comment Javascript parameter not well executed when contain space or specific character
Or better yet, remove all inline JavaScript and try being unobtrusive! :)
Dec
5
answered Using Javascript to Measure the Current Window
Dec
3
revised Regex to find word on page including inside tags.
edited tags
Dec
3
answered Regex to find word on page including inside tags.
Dec
3
comment How do to wrap a span around a section of text WITHOUT using jQuery
Why can't you use innerHTML?
Dec
3
comment How to use regEx to return false when data not in range?
Shouldn't it be ^[A-Z0-9 ]+$ (with the plus, to signify one or more of the preceding character class)?
Dec
3
revised How to use regEx to return false when data not in range?
added 2 characters in body
Dec
3
revised What is the best way to search for an item in a sorted list in javascript?
added 47 characters in body
Dec
3
comment What is the best way to search for an item in a sorted list in javascript?
Another good catch! Thanks Crescent Fresh!
Dec
3
accepted What is the best way to search for an item in a sorted list in javascript?
Dec
3
comment What is the best way to search for an item in a sorted list in javascript?
Ah, good catch, thanks! Edited.
Dec
3
revised What is the best way to search for an item in a sorted list in javascript?
added 78 characters in body; deleted 21 characters in body
Dec
3
comment What is the best way to search for an item in a sorted list in javascript?
Hmm, not sure what you mean. [44].binarySearch(44) returns true.
Dec
3
answered What is the best way to search for an item in a sorted list in javascript?
Dec
2
comment Are there any good reasons NOT to use jQuery instead of plain old JavaScript?
Saying "There are better libraries" is pretty unhelpful. It really depends on the matter at hand. jQuery trumps all libraries for some tasks, and falls flat on its face for other tasks.
Dec
2
revised How do to wrap a span around a section of text WITHOUT using jQuery
added 80 characters in body
Dec
2
comment How do to wrap a span around a section of text WITHOUT using jQuery
lol, was typing out that very thing after you suggested createDocumentFragment() ... Edited :)
Dec
2
revised How do to wrap a span around a section of text WITHOUT using jQuery
added 166 characters in body
Dec
2
comment How do to wrap a span around a section of text WITHOUT using jQuery
Edited, in a rush though :P
Dec
2
revised How do to wrap a span around a section of text WITHOUT using jQuery
added 726 characters in body; added 345 characters in body