Skip to content

Instantly share code, notes, and snippets.

@onionc
Last active October 18, 2017 05:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save onionc/2990e5cb3dd874037199d7b982c19d45 to your computer and use it in GitHub Desktop.
Save onionc/2990e5cb3dd874037199d7b982c19d45 to your computer and use it in GitHub Desktop.
<body>
<div class="R clearfix " data-field="xxxx" >a</div>
<div class="R clearfix v9d1365e44" data-field="xxxx" >b</div>
<div class="R clearfix " data-field="xxxx" >c</div>
</body>
<script>
$(function(){
a=$("div[class^=R]")
a.each(function(i){
console.log($(a[i]).attr('class'))
});
})
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment