Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-03-2012 08:12 AM
The script should be something like this,
var startDate = $('change_request.start_date');
startDate.onclick = "clickMe()";
function clickMe(){
alert('oops, you just clicked a read-only field');
}