- $('.bewerkbaar').mouseover(function()
- {
- $(this).stop().animate(
- {
- opacity: 0.6
- }, 70);
- });
- $('.bewerkbaar').mouseout(function()
- {
- $(this).stop().animate(
- {
- opacity: 1
- }, 70);
- });
- $('.bewerkbaar').click(function()
- {
- alert($(this).attr('class'));
- $(this).removeClass('bewerkbaar');
- $(this).html('<textarea>'+$(this).html()+'</textarea>');
- $(this).css({'opacity':1});
- });
What's the problem? Thanks in advance.
PS What kind of text editor does this forum use? It's very nice and simple. I like it :)