I am trying to get an element from my page using jquery :
The element :
<a href="path" id="form1:ctlName">
I am trying to get the element like this and fail :
$('#form1:ctlName')
While this way works :
document.getElementById('form1:ctlName');
The problem is that I need the .css property which is jquery only.
Anyone has any idea how to get the control using jquery?