Caleb Begly
Caleb Begly
Frank, The question here is whether the links you are using contain absolute urls or not. Under the original version of the script, all absolute urls will open in safari....
Frank, UPDATE: I looked over your website, and it looks like most or all of the links are absolute (that is, they include the http://www.pi-gaomovement.com part). In your case specifically,...
What other scripts are you using? Try replacing the $ with jQuery. This might work for some conflicts. Also, check for script errors in the page when you run in...
Ok, I looked at your source code and you are doing this: ``` $(document).ready(function() { $(function() { var options = { selector: "a", absToStay: Array("pi-gaomovement.com") }; $.stayInWebApp(options); }); }); ```...
You definitely have a conflict. Use jQuery.stayInWebApp(options); instead of $.stayInWebApp(options);. You need to use jQuery everywhere you use $ because something else on the page is using the $ variable....
Frank, Glad to hear it is working. I'm pleased I could help. ~techdude
What is the specific page with error?
I appreciate the tip. I looked at the MIT and It looks great to me.
Should be good now
I have it in my branch, but I don't think it has been merged to mrmoses's master yet. My code it at https://github.com/techdude/jQuery.stayInWebApp if you need the changes I added...