Borgar

2,610
reputation
209 views

Registered User

name Borgar
member for 1 year
seen 3 hours ago
website
location Iceland
age 34
Dec
17
revised How powerful can graphing be in IE6?
Added tags
Dec
6
awarded  Mortarboard
Nov
29
awarded  Necromancer
Oct
21
comment Sorting Divs in jQuery by Custom Sort Order
I like it. It's a very elegant solution.
Oct
21
revised Sorting Divs in jQuery by Custom Sort Order
Support tip for old jQuery versions
Oct
21
answered Sorting Divs in jQuery by Custom Sort Order
Oct
17
accepted Getting elements that exceed the maxium value. JAVASCRIPT/JQUERY
Oct
16
accepted Placing a small arrow over a letter with css
Oct
16
comment Getting elements that exceed the maxium value. JAVASCRIPT/JQUERY
Damn it! I need to learn to type a lot faster. :-)
Oct
16
answered Getting elements that exceed the maxium value. JAVASCRIPT/JQUERY
Oct
16
comment Placing a small arrow over a letter with css
Good catch. I have updated the answer with the correct order. Initially I thought that the arrow letter should have 0 width (because that is what "Non-Spacing" in means to me); I put it in front as I have more experience with fonts and letters than with math notation. Apparently still failing at both though. :-)
Oct
16
revised Placing a small arrow over a letter with css
Corrected glyph order and simplified the examples.
Oct
16
answered Placing a small arrow over a letter with css
Oct
14
comment HTML Tables - How to make IE not break lines at hyphens
Non-breaking hyphen is the way to go. +1
Oct
14
awarded  Yearling
Oct
13
comment Javascript (jQuery) still running after all it’s work is complete
Browsers move the timeout value up to the least they can handle. The timeout will execute when the current thread is complete and all browsers will refresh in between. String values to timeout are equivalent to eval() and if not invalid, simply bad practice.
Oct
9
comment How to get a text before given element using jQuery?
This won't work because text() doesn't return any html. Secondly, even if you change it to using html(), the target element may not be the first span in the parent.
Oct
8
accepted addEventListener in Canvas tag
Oct
7
answered How to have member variables and public methods in a jQuery plugin?
Oct
7
answered addEventListener in Canvas tag
Sep
29
comment Python script for minifying CSS?
Good points. I've added in a few more things, colors, zero-based fragment values, space removal around selector operators, and the trailing semicolon. It's at a point where it is starting to break stuff though, for example: div:content(" |= ") will be stripped to div:content("|="). I guess if you need any more you should be using a real tool anyway.
Sep
29
revised Python script for minifying CSS?
added compression for selector spaces and trailing semicolon in declarations
Sep
29
revised Python script for minifying CSS?
Added shortening for colors and zero-based fractions
Sep
29
comment Modifying document.location.hash without page scrolling
No, what is happening in step 2 is that a hidden div is created and placed at the current location of the scroll. It's the same visually as position:fixed/top:0. Thus the scrollbar is "moved" to the exact same spot it currently is on.
Sep
28
answered Modifying document.location.hash without page scrolling
Sep
19
answered Any jQuery Plugin Update Manager Utility?
Sep
19
answered input focus weirdness when pressing tab key on a form where change handlers on select elements enable or disable inputs
Sep
12
comment display:block inside display:inline
Just want to add that IE6 only supports inline-block for elements that are already inline. But other than that: +1
Sep
3
answered use preg_replace to replace character unless an escape character precedes
Sep
1
awarded  
Aug
30
accepted Detecting an “invalid date” Date instance in JavaScript
Aug
30
comment Detecting an “invalid date” Date instance in JavaScript
instanceof breaks across frames. Duck-typing can work just fine too: validDate == d && d.getTime && !isNaN(d.getTime()); -- Since the question is for a general utility function I prefer to be more strict.
Aug
30
answered Detecting an “invalid date” Date instance in JavaScript
Aug
25
comment Confessions of your worst WTF Moment. (What not to do.)
I've done a rm -rf / while going for a full path but hitting enter by mistake. /bin was blown clean away. rm didn't stop running despite being deleted, I suspect this is because the process maintains a handle on the file. Deleting /dev, however, took enough time for me to hit ctrl+c. YMMV.
Aug
24
accepted Why can’t javascript find and replace strings containing spaces in the url?
Aug
22
answered Why can’t javascript find and replace strings containing spaces in the url?
Aug
15
answered Given an x,y coordinate, I need to find all html elements underneath it.
Aug
14
answered What cross-browser charting packages are available?
Aug
14
answered repeating id’s of element children
Aug
7
accepted JS Test for :target support
Aug
7
answered Reading bytes from JavaScript string
Aug
5
answered JS Test for :target support
Jul
27
comment Common programming mistakes for JavaScript developers to avoid?
for does not create scope in JavaScript. Both loops won't work right in the exact same way (inner terminates outer). The only difference is that the second one doesn't create a global variable if run within a function.
Jul
21
accepted Get height of entire document with JavaScript
Jul
18
answered Get height of entire document with JavaScript
Jul
17
answered MSIE : jQuery’s append()/html() not working, resorted to getElementById().innerHTML
Jul
17
answered How to find out which javascript library owns $
Jul
7
comment What is array literal notation in javascript and when should you use it?
This is similar to, but not quite the same as: stackoverflow.com/questions/931872/…
Jul
3
answered Optimal Regular Expression: match sets of lines starting with …
Jul
1
comment setting rowspan on colgroup?
I second this answer. The tbody tag IS the equivalent of a rowgoup. It just so happens that that there are three types of rowgroups (thead, tbody, and tfoot). Additionally the underestimated axis attribute can be added to the cells to "tags" same quadrant cells together. <td axis="quad1">. These may then be CSS selected with "table td[axis=quad1]".