Foundation Joyride issue in IE9 - zurb-foundation

I am using foundation's joyride plugin, everything is working fine in Chrome and FF, but in ie9
the highlighted element is clickable.
Ex. I am highlighting a form's submit button like "When you are done, Click this Button to Register" when I click the highlighted button the submit action takes place in IE9 browser.
But it is working fine in Chrome and FF, when in click the highlighted Submit button nothing happens.
Is there any way to fix this.
Thank you

Related

Zurb Foundation Accordion Closing by Itself on Mobile

On phones, my "Section Menu" closes by itself after the user opens and starts scrolling. I'm using a Zurb Foundation Accordion for the menu. Does anyone know why this is happening on mobile?
UPDATE: I'm also trying a simple Zurb Foundation Toggler. I'm toggling the ".hide" class. The menus still vanish when the user tries to scroll.
My site:
https://deq.utah.gov/communication/public-notices
picture of the menu
I was using the following script to listen for widow size changes. This helped me show/hide my menu when troubleshooting on a desktop browser. For some reason, mobile was reporting a screen width change on scroll. When I removed this script, my accordion stopped closing by itself.
$(window).width() not the same as media query

Regarding stopping page reload when button clicked

I am working with Oracle Apex 4.2 where in i have a page which is Page1 and within the page i have a report region and a button. When i click on the button a Skill Builder Pop-up plugin hits up and a popup window opens up where in i created a form on another page which is Page2.
I am adding a JavaScript page refresh for Page1 and it will automatically refreshes the page at particular intervals. Code is as follows:
$(document).ready(function(){
setInterval(function(){cache_clear()},10000);
});
function cache_clear()
{
window.location.reload(true);
}
But when i click on the button, the page refresh on Page1 should stop and again it should get activated after closing the popup only.
Any help would be appreciated.
To stop process when button click use clearInterval() function.
Refer discussed thread Stop setInterval call in JavaScript
for more details.

Facebook like button disappears when not logged in

I have an issue with the FB like button.
In a web view inside our iOS and Android apps, when the FB like button is pressed and you are not logged in, instead of displaying a login modal as it has previously it just disappears.
This happens for the iframe and XFBML versions.
I can also reproduce this when clicking the like button in the mobile browser when viewing https://developers.facebook.com/docs/reference/plugins/like/.
I've logged this with FB Dev but thought I'd try here as well.
I had the same problem....
You have to use this tool: https://developers.facebook.com/tools/debug
Enter the url you want to add like button, this will clear facebook cache,
and the like button will work properly.
It's possible a like button is blocked if the page it links to has a restriction. This article has some more information about this problem: Ttp://www.andreavahl.com/facebook/why-your-facebook-like-box-is-not-showing-up.php

Facebook window not showing correctly & cancel button is invisible in iphone

I am integrating facebook login functionality in my iphone application. When I click on "Login with Facebook" button then facebook window opens which is shown below
As you see , "Facebook" is partially visible. Also I can not see any "Cancel" button on the screen. I can not figure out what is wrong with this. By the way I am using official facebook ios sdk from GitHub. My ios sdk is 4.3 & xcode 4. I want "Cancel" buuton on this scrren so that user can navigate back to application & also facebook Title on the view should be displayed correctly. Please guide me. Thanks.

Appcelerator. Button on row is not registered when clicked

Titanium SDK version: 1.7.0.RC1
iPhone SDK version: 4.2
I am developing a very simple iOS app in Appcelerator that fetches tweets from Twitter and displays them in a table. Each row/tweet got a button that, if clicked, will add the selected tweet to the database. I also want the user to be able to click the tweet itself too.
What is wrong with this code? It is not responding to clicks on the button. I also need the row to disappear when the button is clicked.
http://pastie.org/2038105
I got this problem solved using the solution found here.
http://developer.appcelerator.com/question/120723/button-on-row-is-not-registered-in-event-listener#209636