html - remove Link Navigation from calendar Date -
i want remove link date gets displayed in sharepoint calendar list. if use developer's tool, not see anchor tag on can apply css disable. must achieve through css itself.
the code given below sharepoint:
<tr class="ms-acal-summary-dayrow"> //tr has class <td date="5/12/2013" evtid="day">//td dont know how fetching value , entire td has link has removed. <div> <nobr> text -12 //this text "12"has link </nobr> </div> </td> </tr>
text-12 has link want remove. how achieve through css?
you can remove link using css
.active { pointer-events: none; cursor: default; }
Comments
Post a Comment