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"); }); 

http://api.jquery.com/class-selector/


Comments

Popular posts from this blog

c# - Send Image in Json : 400 Bad request -

jquery - Fancybox - apply a function to several elements -

An easy way to program an Android keyboard layout app -