jquery - how do I select the following DOM items? -

i want select highlighted items can turn them green:
<script type="text/javascript"> $(document).ready(function() { $('????').css("color", "green"); }); </script> can give me hand?
you need select element it's class.
so $('.k-in') should this
putting in code:
$(document).ready(function(){ $('.k-in').css("color", "green"); });
Comments
Post a Comment