Ok, i know now that i have to rebind but in wich way ? Here is the code that should show 2 divs with corners and foo and foo2 in it.
Where is my mistake ? thanks and regards, f. <html> <head> <script type="text/javascript" src="../util/js/jquery.js"></script> <script type="text/javascript" src="../util/js/ jquery.livequery.min.js"></script> <script type="text/javascript" src="../util/js/jquery.corner.js"></ script> <style type="text/css"> div.rounded { background: #6af;} </style> <script type="text/javascript"> $(document).ready(function(){ $('.rounded').corner(); $("#Idsubmit").livequery('click', function() { $("#IdDivResult").addClass('rounded').html('foo2'); }); }); </script> </head> <body> <div class="rounded">foo</div> <input id="Idsubmit" type="button" value="show 2nd corner"> <div id="IdDivResult"></div> </body>