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

http://jsfiddle.net/7eqjp/


Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -