gumbyframework: responsive menu issue on smartphone - frameworks

I'm developing a responsive website and i use the gumby framework http://gumbyframework.com/
Now, when i try to resize the window and the responsive menu appear, i click on the icon and it works. But if i try on a smartphone, nothing happen
this is the website i'm developing http://www.francescomigliorato.it/lachicca
Any help is much appreciated. Thanks in advance and sorry for my english

The solution is to use version 1.8.3 of jquery. With the latest there is a problem with gumbyframework

I notice in line 78 of main.js that you have a javascript error... I would fix that first and see what happens.
$('input.data').datepick({
Uncaught TypeError: Object [object Object] has no method 'datepick'
showTrigger: '#calImg'
});

Related

i am using jcarousel with the shortcodes ultimate wordpress plugin and i am having trouble posting it on the front page

I took the code from this page http://signsanddesigns2go.com/?page_id=608 and it works but I want it on my home page so I went to the editor and tried to copy and past the code under the banner slider it showed up but the images did not rotate can anyone help me with this issue please and thank you.
Have you added the auto attribute?
.jcarousel({
auto:2,
scroll:1,
wrap:"last"
})

Can't upload icon for Facebook iframe app - only see a CANCEL button

I'm trying to upload an icon to a new Facebook app (iframe) but the "Upload an icon" popup window only shows a CANCEL button, there's no OK or UPLOAD, or anything.
There is a little padlock icon on the top right so it seems it's locked. Any ideas?
Can't find anything about this.
Here is what I get:
Any ideas?? Thanks.
The fix for this will be pushed soon.
If you need this urgently, you can try the work-around mentioned in the comments. It's a weird one though: after doing it, it wasn't displaying in the app settings window, but actually showed up for the tab itself.
https://developers.facebook.com/bugs/281308458596344
I was also warned (and flagged) for posting about this on stack overflow this morning, so just letting you know, this should be posted on the Facebook bug pages.
It looks like a missing script. The "Choose File" input is meant to upload the image onchange:
<input type="file" name="image_upload" onchange="DevelopersImageUploader.submitToIframe(); return false;">
however the DevelopersImageUploader object is not available as shown by the console message:
Uncaught ReferenceError: DevelopersImageUploader is not defined
(anonymous function)/apps/230113777067870/summary/:1
onchange
This is a recent problem. Not only for iFrame Tab but also for other kind off application. The uploader was working last week (2012-01-20).

android + phonegap combo box

I tried to create a combo box using in HTML for building an android phone gap application. Its working perfectly on a browser.But on an emulator the click function fails. Kindly please let me know on what could be the possible reason for this.
You likely need to trigger from 'tap' events instead of 'click'

iphone detect new style sheet

I am trying to trouble shoot a css issue that is appearing only in iphone browsers. I simply need to detect if the user is using an iphone, and if so, render a modified version of the div that is being affected.
I am happy to just call this modified version of the css div in the header as it will save having a second style sheet.
You used to be able to do it between browsers. It was especially good when rendering a IE6 fix.
Thanks for your help in advanced.
James
if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))) {
// do something
}

Set textbox focus in mobile safari

Hey, I was wondering how to set the focus to a text box in Mobile Safari.
I've tried document.myForm.myTextArea.focus() which works in regular Safari, but it does not seem to work in Mobile Safari.
To clarify, I want to set focus to a text box as soon as the user loads a page, and have the iPhone keyboard pop up.
Just found this previous post stating this is a bug in webkit. Sorry for not doing a more thorough search.
http://discussion.forum.nokia.com/forum/showthread.php?t=127724
I found a bug report with the iUI project relating to this.
It seems that a focus() call will not work if called from the onload event or if called via a timer.
http://code.google.com/p/iui/issues/detail?id=129
Update: Although I have no source for this, I am told (by people who have tried it) that in iPhone OS 4 the problem with focus() and onload should be fixed.
Nothing to do with the timer, focus() doesnt work at all... im doing mine through an AJAX function. i guess my web application will have to suffer in mobile safari.
Bye the way, this also affects HP webOS devices and any other device using mobile safari