Side navigation
Ticket #7078: bad_style_selector.html
File bad_style_selector.html, 1.0 KB (added by adam.wulf, September 24, 2010 06:04PM UTC)
shows .find() not being able to select based on inline style
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="author" content="matt.wilson">
<meta name="description" content="">
<title>Title</title>
<link rel="icon" href="">
<script src="http://code.jquery.com/jquery-1.4.2.min.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript" charset="utf-8">
$(function() {
// works
console.log($("input[style*=blue]"));
// doesn't work
console.log($("div").find("input[style*=blue]"));
// works
console.log($("div").find("input[name*=foo]"));
})
</script>
</head>
<body>
<header>
</header>
<div>
<input style="color: blue;" name="foo">
WOOT WOOT
</input>
</div>
<footer>
</footer>
</body>
</html>
Download in other formats:
Original Format
File bad_style_selector.html, 1.0 KB (added by adam.wulf, September 24, 2010 06:04PM UTC)
shows .find() not being able to select based on inline style
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="author" content="matt.wilson">
<meta name="description" content="">
<title>Title</title>
<link rel="icon" href="">
<script src="http://code.jquery.com/jquery-1.4.2.min.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript" charset="utf-8">
$(function() {
// works
console.log($("input[style*=blue]"));
// doesn't work
console.log($("div").find("input[style*=blue]"));
// works
console.log($("div").find("input[name*=foo]"));
})
</script>
</head>
<body>
<header>
</header>
<div>
<input style="color: blue;" name="foo">
WOOT WOOT
</input>
</div>
<footer>
</footer>
</body>
</html>