Hello,
i need to disable a link in some case.
What I do actually is something like this :
<html>
<head>
<script src="javascript/prototype.js" type="text/javascript"></
script>
</head>
<body>
<script type="text/javascript">
var a_create = new Element('a', {
id : 'btn_create',
href : 'javascript:linkOnClick();',
innerText : '[ Create ]'});
var l_create = new Element('label',{id:'btn_create',
innerText:'[ Create ]'});
function linkOnClick() {
$('btn_create').replace(l_create);
alert("disabled");
}
function activateLink() {
$('btn_create').replace(a_create);
alert("activate");
}
</script>
<label id="btn_create">[ Create ]</label>
<input type="button" onclick="javascript:activateLink();"
value="Activate link" />
</body>
</html>
It works fine but, It's possible to do much easier ? If not, how can I
override only the link tag whitout modifying other Elements?
Thanks !
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Prototype & script.aculo.us" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/prototype-scriptaculous?hl=en
-~----------~----~----~----~------~----~------~--~---