Toggle navigation
Home
Latest pastes
FAQ
Random
BitBin is shutting down!
Register
Login
Browser Support
SUBMITTED BY:
Guest
DATE:
March 21, 2014, 9:09 a.m.
FORMAT:
JavaScript
SIZE:
791 Bytes
Raw
Download
Tweet
HITS:
3075
Go to comments
Report
function
checkSupport
(
prop
)
{
var
div
=
document
.
createElement
(
'div'
),
pref
=
'Khtml Ms O Moz Webkit'
.
split
(
' '
),
len
=
pref
.
length
;
return
(
function
(
prop
)
{
if
(
prop
in
div
.
style
)
return
prop
;
prop
=
prop
.
replace
(
/^[a-z]/
,
function
(
val
){
return
val
.
toUpperCase
();
});
while
(
len
--
){
if
(
pref
[
len
]
+
prop
in
div
.
style
){
return
pref
[
len
]
+
prop
;
}
}
return
false
;
})(
prop
);
}
Please enable JavaScript to view the
comments powered by Disqus.
comments powered by
Disqus