Hey there is a link in my program as shown and onclick it calls the function clearform as shown:

Html Code:

<a class="button" href="Cancel" style="left: 55%;" onclick="clearForm()">Cancel</a>

JavaScript Code:

function clearForm(){
        document.getElementById("subjectName").value = "";
        return false;
    }

return false is not working in this code. actually the first line of the function executed successfully but the return false was failed. I mean page is redirected to url "Cancel".

link|improve this question

74% accept rate
feedback

4 Answers

up vote 6 down vote accepted

Change your code as

<a class="button" href="Cancel" onclick="return clearForm()">Cancel</a>
link|improve this answer
kk thanks that worked. – codeomnitrix Apr 27 '11 at 7:32
Glad that helped you. – Vijay Apr 27 '11 at 10:29
1  
This does not stop the default action if clearForm() has a javascript error. See my answer below for bullet-proof method. – mrbinky3000 Feb 7 at 15:35
feedback

Your problem is you need to return the Boolean.

But, drop all that...

  • Attach your event unobtrusively...

    element.onclick = clearForm;

  • Use preventDefault(). It is the modern way of acheiving that.

    function clearForm(event) { event.preventDefault(); }

link|improve this answer
4  
+1 For suggesting to stop using inline event handlers. – bažmegakapa Apr 27 '11 at 7:28
kk thanks alex i will try that. – codeomnitrix Apr 27 '11 at 7:34
@bazmegakapa: sometimes they are needful – codeomnitrix Apr 27 '11 at 7:34
@code Needful? Can you elaborate on that? – alex Apr 27 '11 at 7:37
@codeomnitrix I cannot think of a case when an inline event handler would be the best solution. – bažmegakapa Apr 27 '11 at 7:40
show 2 more comments
feedback
<a class="button" href="Cancel" style="left: 55%;" onclick="clearForm();return false;">Cancel</a>

should work

link|improve this answer
feedback

Please note that if there is a bug or error in clearForm() then "return false" will NOT stop the anchor action and your browser will try to link to the href "Cancel". Here is the logic:

  1. User clicks on anchor
  2. onClick fires clearForm()
  3. There is an error in clearForm() so Javascript crashes and stops all code execution.
  4. return false is never fired because Javascript has already stopped.

If you are relying on a third party JavaScript API (I was using code supplied by Recyclebank to spawn a popup), and the third party API makes an update that breaks the JavaScript, then you'll have problems.

The following will stop the link under normal conditions and error conditions.

<a class="button" href="javascript:;" style="left: 55%;" onclick="clearForm();return false;">Cancel</a>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.