Problem:
Some time we need to call javascript function which is based on some condition or may pass as parameter and then call that function. In this case we need to check whether this javascript function available or not if available then we call it otherwise not.
HTML:
Javascript:
Demo:
http://jsfiddle.net/patelriki13/drwdG/
Some time we need to call javascript function which is based on some condition or may pass as parameter and then call that function. In this case we need to check whether this javascript function available or not if available then we call it otherwise not.
HTML:
<input id="test" value="Available" onclick="ISfuctionAvailable();" type="button"/> <input id="test1" value="Not available" onclick="fuctionNotAvailable();" type="button"/>
Javascript:
function ISfuctionAvailable() { if (typeof fuctionNotAvailable == 'function') { alert('Function available'); //You can call function like fuctionNotAvailable(); } else { alert('Function Not available'); } } function fuctionNotAvailable() { if (typeof test5 == 'function') { alert('Function available'); } else { alert('Function Not available'); } }
Demo:
http://jsfiddle.net/patelriki13/drwdG/
Jsontextwriter Example in C#, VB.NET
ReplyDeletehttp://expertwebcode.blogspot.com/2019/01/jsontextwriter-example-in-c-vbnet.html
Salesforce Interview Questions with Answers Part 4...
http://expertwebcode.blogspot.com/2018/01/salesforce-interview-questions-with_4.html
android kotlin - AlertDialog setSingleChoiceItems ...
http://expertwebcode.blogspot.com/2018/04/android-kotlin-alertdialog.html
android kotlin - DataBinding visibility example
http://expertwebcode.blogspot.com/2019/01/android-kotlin-databinding-visibility.html
INVALID_QUERY_LOCATOR, Unable to find query cursor...
http://expertwebcode.blogspot.com/2019/05/invalidquerylocator-unable-to-find.html
System.ListException: Before Insert or Upsert list...
http://expertwebcode.blogspot.com/2013/10/systemlistexception-before-insert-or.html
The Version of Visual Studio you are running matte...
http://expertwebcode.blogspot.com/2019/01/the-version-of-visual-studio-you-are.html
android - MaterialCardView example
http://expertwebcode.blogspot.com/2019/01/android-materialcardview-example.html