- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2023 02:28 AM
How to change the field background colour through BR script, please suggest?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2023 02:45 AM
@VIKAS MISHRA Best way is to use style by righ clicking on field and change style.
But doing through BR what i can think is you can manipulate document element by:
var label= document.getElementById('get id from html of that field label');
label.style.color = 'green';
Try this if helps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2023 02:45 AM
@VIKAS MISHRA Best way is to use style by righ clicking on field and change style.
But doing through BR what i can think is you can manipulate document element by:
var label= document.getElementById('get id from html of that field label');
label.style.color = 'green';
Try this if helps.