Note this is for mobile site is using jqtjs http://jqtjs.com/
I have tested the following on two different IPhone 4 models 1 running 6.1.3(updated) and 5.1.1(old jailbroken)
I tested using both Safari(up to date) and Chrome (up to date)
I used various methods:
sms:
smsto:
sms://
The following work here on the fiddle page when put on my mobile site im trying to get working I get nothing.
works: http://jsfiddle.net/gSPEe/
not working :http://redwirelogic.com/help/ (sorry for the page link but idk how else to describe this)
test1<br>
test2<br>
test3<br>
test4<br>
test5<br>
test6<br>
test7<br>
test8<br>
test9<br>
Nothing is working! Id love some help figuring this out.
To test if something was wrong i confirmed that the tel and mailto work for calling and email.
I found the link below and well yea so it is documented to work right?
Ios development library-Text Link
Switch to Jquery Mobile (http://jquerymobile.com/). JQTouch is basically abandonware and is no longer maintained. Can't find any way to stop it from disabling sms: links.
Related
I have some problems with my website. My site is coded in HTML,CSS and JS.
Everywhere works perfect, Desktop (all browsers), Android (All browsers), in iPhone(iOS.11) doesn't work!!!
I think there may be two problems:
1. When i open the site, i have Loading Page script, and in iPhone it stops there and doesnt open the site.
2. The problem may also be with the new iOS 11, because with earlier iOS(10) was working very well.
Any suggestion, or any site which i can check my errors (debugg) or..?
google didn't solve my problem so i decided to ask, but still can't find the problem!!!
Thanks.
If you have an OSX available you can enable remote debug and see what's happening, most likely something is breaking based on something not being available.
The following SMS link does not seem to work on a Nexus in Hangouts, but works fine in the default Messaging app on a Samsung phone.
Link
I even tried adding a number before the URL, but no luck:
Link
Any idea how I can fix this?
It should be ? instead of & since it's the first parameter. Tested it over my nexus and it worked correctly after this fix (I'm using Google Messenger App).
Link
UPDATE:
Another problem that you may have is that Hangouts doesn't support pre-populated sms message links.
Also, looks like you should use & for iOS devices.
How to pre-populate the sms body text via an html link
I have developed a web application using AngularJS & PHP, it works fine on chrome & firefox but have issues loading on IE due to number of JS files, i will have to reduce them to make it work on IE.
When checking the website on an IPAD, all my "angular tags" are displayed like it is
"{{item}}" , "{{d.bar}}" , "{{d.lol}}", {{title}}, {{description}}, {{ratings}} etc.
can anyone have any thoughts why it would display like that
It could be, that there is some JavaScript issue on iPad, which prevents angular from doing its work. If there is some Developer Console on the iPad which displays javascript errors, you can try to fix them.
I'm fairly competent with HTML and am working with Bootstrap for the first time, but I can't seem to get the mobile collapsible menu working on Chrome on the desktop (and presumably some other browsers).
Safari on iOS 7 with default mobile responsiveness shows the menu fine when clicked, but nothing happens when you click it in Chrome on the PC when the browser is resized to a mobile-like width.
Sorry if it has been said before - just went through the code and couldn't really understand why it wasn't working! :(
First time on SO and can't figure out how to put my HTML in here, so here it is.
Thanks peeps :)
You have linked jQuery from Google CDN and hosting your website from Dropbox. Dropbox does not allow external linking of script and font files.
So you are getting an error on your page:
Host the jQuery file on your website and link (internal linking). Like for example put jQuery in JS folder and link:
<script src="js/jquery.min.js"></script>
Problem will be gone. Hope this helps!
I am using the skrollr plugin for parallax https://github.com/Prinzhorn/skrollr. I know it works fine on iPad 3 and iPhone 4S with version 6.1.3.
However, on an iPad 2 version 5.1.1 and several various Android devices, I have run into an issue where if I attempt to click on any link...or really anything at all...I get a message that says:
"JavaScript:Error undefined TypeError:'undefined' is not a function".
I isolated the issue to skrollr.js about line 649 initialElement.click();. If I remove that call, then the error no longer happens...except obviously I still can't click on anything.
Also, I know for sure that this is an error in the plugin itself because I tried clicking on things in the skrollr demo and get the same error http://prinzhorn.github.io/skrollr/.
Has anyone come upon a solution for this? I haven't seen it posted anywhere. Also I've already tried alternatives such as:
initialElement.mousedown('click');
initialElement.trigger('click');
initialElement.bind('click');
initialElement.live('click');
initialElement.delegate('click');
and all give the same exact error.
I find it strange that it doesn't occur in all devices, and the rest of the plugin seems to be working...so it's not an issue on where I'm importing it...heck even everything else attached to initialElement seems to be okay.
Any ideas?
Once again, I would give you a link to my site but can't due to disclosure agreement. But if you need snippets of code let me know.
Thanks for the help!! :)
Maybe give this a shot at line 644 - https://gist.github.com/JustinWUP/6032497
Changing the following on skrollr.js worked for me. [Added $() around the 'initialElement']
if(distance2 < 49) {
//It was a tap, click the element.
//initialElement.focus();
//initialElement.click();
$(initialElement).focus();
$(initialElement).click();
return;
}