[jQuery] Selector not question

[jQuery] Selector not question

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META content="text/html; charset=us-ascii" http-equiv=Content-Type>
<META name=GENERATOR content="MSHTML 8.00.6001.18702"></HEAD>
<BODY>
<DIV><FONT size=2 face="Trebuchet MS"><SPAN class=441553900-05062009>I am trying
to disable all links except for the one clicked.</SPAN></FONT></DIV>
<DIV><FONT size=2 face="Trebuchet MS"><SPAN
class=441553900-05062009></SPAN></FONT> </DIV>
<DIV><FONT size=2 face="Trebuchet MS"><SPAN
class=441553900-05062009>$('a[class^="edit_"]').click(function(){<BR> var
url_id = $(this).attr('href');<BR> var e =
$(this).attr('class');<BR> var x =
$(this).attr('id').split('_');<BR> var y = x[0];<BR> var z =
x[1];<BR> alert(e);</SPAN></FONT></DIV>
<DIV><FONT size=2 face="Trebuchet MS"><SPAN
class=441553900-05062009></SPAN></FONT> </DIV>
<DIV><FONT size=2 face="Trebuchet MS"><SPAN class=441553900-05062009>the alert
shows edit_profile so e = edit_profile </SPAN></FONT></DIV>
<DIV><FONT size=2 face="Trebuchet MS"><SPAN
class=441553900-05062009></SPAN></FONT> </DIV>
<DIV><FONT size=2 face="Trebuchet MS"><SPAN class=441553900-05062009>so i am
trying to fade all classes with edit_ somethingto 0.25 except for edit_profile
but its not working.</SPAN></FONT></DIV>
<DIV><FONT size=2 face="Trebuchet MS"><SPAN
class=441553900-05062009></SPAN></FONT> </DIV>
<DIV><SPAN class=441553900-05062009><FONT size=2 face="Trebuchet MS">What am I
missing?</FONT></DIV>
<DIV><BR><FONT size=2
face="Trebuchet MS">  <BR>    $('a[class^="edit_"]:not(e)').fadeTo('slow'
, 0.25 , function() {</FONT></DIV>
<DIV><SPAN class=441553900-05062009><FONT size=2
face="Trebuchet MS">....</FONT></SPAN></DIV>
<DIV><SPAN class=441553900-05062009><FONT size=2
face="Trebuchet MS">....</FONT></SPAN></DIV>
<DIV><SPAN class=441553900-05062009><FONT size=2
face="Trebuchet MS">....</FONT></SPAN></DIV>
<DIV><SPAN class=441553900-05062009><FONT size=2
face="Trebuchet MS">}):</FONT></SPAN></DIV>
<DIV><FONT size=2 face="Trebuchet MS"></FONT> </DIV>
<DIV></SPAN><SPAN class=441553900-05062009><FONT size=2
face="Trebuchet MS">Thanks</FONT></SPAN></DIV>
<DIV> </DIV>
<DIV align=left><FONT size=2 face=Arial>Dave</FONT></DIV></BODY></HTML>