Как удалить в jQ несколько атрибутов СРАЗУ?
<html xmlns="http://www.w3.org/1999/xhtml">
<head><script type="text/javascript" src="jquery-ui-1.8.16.custom.min.js"></script></head>
<div in='e_3 ' on='y_23 '></div>
<body>
$('#my_div').removeAttr('???????')<br>
$('#my_div').removeAttr('e_3 ').removeAttr('ey_3 ') что ТАК работает я и сам вижу :)
<script type="text/javascript">
$(document).ready(function(){
var at=$('#my_div').attr('in')
///$('#my_div').removeAttr('???????')
alert(at)})
</script >
</body>
</html>