Vyhľadajte odpoveď

Vyhnite sa podvodom s podporou. Nikdy vás nebudeme žiadať, aby ste zavolali alebo poslali SMS na telefónne číslo alebo zdieľali osobné informácie. Nahláste prosím podozrivú aktivitu použitím voľby “Nahlásiť zneužitie”.

Learn More

onclick is not calling

  • 1 odpoveď
  • 2 majú tento problém
  • 6 zobrazení
  • Posledná odpoveď od the-edmeister

more options

I have the following scenario in my project:

In the form the following field is there: Name : <input type="text" onchange="callSyncAjax(this)" /><input type="button" onclick="doSave()" value="Save"/>

In the java script :

      function callSyncAjax(obj) {

//some syncronized ajax function here return true; }

function doSave() { //form submit functionaly here }

Now i enter some name in name field and with out clicking any where or without tabbing i clicked on save button but in Fire Fox the doSave() function is not called. But i clicked again then its called.

can any one help on this? why for first time the doSave() method not called?

I have the following scenario in my project: In the form the following field is there: Name : <input type="text" onchange="callSyncAjax(this)" /><input type="button" onclick="doSave()" value="Save"/> In the java script : function callSyncAjax(obj) { //some syncronized ajax function here return true; } function doSave() { //form submit functionaly here } Now i enter some name in name field and with out clicking any where or without tabbing i clicked on save button but in Fire Fox the doSave() function is not called. But i clicked again then its called. can any one help on this? why for first time the doSave() method not called?

Všetky odpovede (1)

more options

This forum is intended for user support, not for web development issues. Try posting at the Web Development / Standards Evangelism forum at MozillaZine. The contributors over there are more knowledgeable about web page development issues with Firefox. http://forums.mozillazine.org/viewforum.php?f=25 You'll need to register and login to be able to post in that forum.