Aaron
Junior Member
And what is Fonzie like?
Posts: 265
inherit
25673
0
Mar 10, 2013 19:53:10 GMT -8
Aaron
And what is Fonzie like?
265
June 2004
derfleurer
|
Post by Aaron on Jul 21, 2010 16:39:57 GMT -8
|
|
inherit
100824
0
May 13, 2012 5:37:49 GMT -8
Michael
14,585
March 2007
wrighty
|
Post by Michael on Jul 21, 2010 23:36:19 GMT -8
Yup i based it on ur code. . It is open source . I wanted to show my love for you
|
|
Aaron
Junior Member
And what is Fonzie like?
Posts: 265
inherit
25673
0
Mar 10, 2013 19:53:10 GMT -8
Aaron
And what is Fonzie like?
265
June 2004
derfleurer
|
Post by Aaron on Jul 22, 2010 1:44:40 GMT -8
Oh, aye. I'm not contesting it. I just like giving you a hard time. p=
|
|
inherit
2671
0
May 14, 2013 14:40:03 GMT -8
Peter
🐺
10,615
February 2002
peter3
|
Post by Peter on Jul 22, 2010 2:33:53 GMT -8
jQuery ForumThat uses the jQuery category splitter I just coded, and the speed at which it loads is rediculous fast! The reason why it is so speedy is because jQuery is a wrapper for querySelectorAll (native to the browser). Sizzle (the selector engine) will only ever be needed for browsers that don't support querySelectorAll. querySelectorAll is supported even in IE8, however it can't be used because it's not supported in quirks mode (any ProBoards forum falls back to quirks mode). I've been playing with querySelectorAll for a while now, and I hope that ProBoards v5 markup is more standard which doesn't force IE into quirks mode, that way all future v5 codes will be better of performance wise if people learn to use it, or learn jQuery. I've implemented querySelectorAll into my new code, so far I've been impressed with the speed compared to regular DOM traversal methods.
|
|
inherit
100824
0
May 13, 2012 5:37:49 GMT -8
Michael
14,585
March 2007
wrighty
|
Post by Michael on Jul 22, 2010 2:56:38 GMT -8
jQuery ForumThat uses the jQuery category splitter I just coded, and the speed at which it loads is rediculous fast! The reason why it is so speedy is because jQuery is a wrapper for querySelectorAll (native to the browser). Sizzle (the selector engine) will only ever be needed for browsers that don't support querySelectorAll. querySelectorAll is supported even in IE8, however it can't be used because it's not supported in quirks mode (any ProBoards forum falls back to quirks mode). I've been playing with querySelectorAll for a while now, and I hope that ProBoards v5 markup is more standard which doesn't force IE into quirks mode, that way all future v5 codes will be better of performance wise if people learn to use it, or learn jQuery. I've implemented querySelectorAll into my new code, so far I've been impressed with the speed compared to regular DOM traversal methods. I'll be sure to have a read through your new code when you either release it or open it for Beta/Alpha testing! I might learn some stuff!
|
|
Aaron
Junior Member
And what is Fonzie like?
Posts: 265
inherit
25673
0
Mar 10, 2013 19:53:10 GMT -8
Aaron
And what is Fonzie like?
265
June 2004
derfleurer
|
Post by Aaron on Jul 22, 2010 3:06:49 GMT -8
I don't have many browsers at my disposal, but i've noticed--at least with the specific examples that w3 provides--almost contrasting performances between Opera and FF concerning regular traversion and querySelectorAll. Any insight on that?
|
|
inherit
100824
0
May 13, 2012 5:37:49 GMT -8
Michael
14,585
March 2007
wrighty
|
Post by Michael on Jul 22, 2010 3:32:42 GMT -8
If the user is using a browser that doesn't support querySelectorAll, does it fall back to anything, or does it simply ignore it?
Ultimately, it's not ideal to be using for coding now if that is the case, as so many people don't use IE8/others.
|
|
inherit
130228
0
Jul 11, 2024 19:19:59 GMT -8
Charles Stover
1,731
August 2008
gamechief
|
Post by Charles Stover on Jul 22, 2010 6:00:14 GMT -8
V5 already includes, and makes use of jQuery. If people learn to how to make good use of it now, it certainly wouldnt be the worst thing in the world Good to hear. Is it going to be hosted locally on PB servers or externally on Google Code, etc.?
|
|
#e61919
2
0
1
Oct 2, 2024 14:45:32 GMT -8
Martyn Dale
$[user.personal_text]
20,088
February 2003
martyn
|
Post by Martyn Dale on Jul 22, 2010 9:35:19 GMT -8
Cat solitudes won't be needed in v5 because of the nature of the template engine And this is why i shouldnt let my iPhone automatically change spellings for me haha Probably google code unless we have our own CDN system running at that point.
|
|
#00AF33
14306
0
1
Sept 8, 2023 8:54:17 GMT -8
Jordan
What is truth?
11,838
October 2003
jab2
|
Post by Jordan on Jul 22, 2010 10:09:17 GMT -8
If the user is using a browser that doesn't support querySelectorAll, does it fall back to anything, or does it simply ignore it? It falls back to Sizzle.
|
|