Advertisement
Guest User

Untitled

a guest
Apr 28th, 2015
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. <select name="ct100$rptCurrentData$ct101$ddlIncludeData" class="clsTypes"
  2. id="ctl00_rptCurrentDatas_ddlIncludeData_0" style="background-color: transparent;">
  3. <option style="background-color: transparent;" value="-1">Select</option>
  4. <option style="background-color: transparent;" value="1">Activity</option>
  5. <option style="background-color: rgb(231, 251, 189);" value="2">Proposal</option>
  6. <option style="background-color: transparent;" value="3">Both</option>
  7. </select>
  8.  
  9. $(this).find('option:selected').css("backgroundColor", '#E7FBBD');`
  10.  
  11. $(this).find('option:selected').css('background-color')); //Output-rgb(10, 36, 106)
  12. $(this).find('option:selected').css('backgroundColor')); //Output-rgb(10, 36, 106)
  13. $(this).find('option:selected').attr("style"));
  14. //Output- background-color: rgb(231, 251, 189);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement