これが起こっている理由が思いつかないので、問題をデバッグするのに苦労しています。以下が iOS では正しく動作しないが、他のすべてのブラウザでは正常に動作する理由はありますか?
alert($('#id')[0].3rdPartyLibrary.someFunction);
//successfully alerts the code within someFunction
$('#id')[0].3rdPartyLibrary.someFunction();
//is called in all browsers but not in iOS also stops execution of anything below
alert('not hit in iOS');
//but is fine in all other browsers