0

I have an element:

<a id="lnkViewEventDetails" class="psevdo calendar-event event" style="height: 126px;" href="/someurl/895?responseType=5" onclick="event.stopPropagation();"> 

I want to make it resizable by using JQuery UI:

$("#lnkViewEventDetails").resizable();

But it doesn't work.

So what is the solution?

kostepanych
  • 2,229
  • 9
  • 32
  • 47

1 Answers1

5

resizable() only works on block elements. A is an inline element.

The style for this link needs to include display:block;

Diodeus - James MacFarlane
  • 112,730
  • 33
  • 157
  • 176