A fallback is a design pattern useful in situations, when certain advanced functionality may be used only if certain conditions are met. If the conditions cannot be fulfilled, algorithm reverts to the so-called fallback function, which achieves the goal using less sophisticated methods.

learn more… | top users | synonyms

1
vote
0answers
80 views

Video.js Flash fallback only works the first time page loads in IE7/8

I am having a problem with the video.js flash fallback in IE7 and IE8. The first time you load a page containing video, everything works as expected-the video plays. But, if you click on a link to ...
0
votes
1answer
32 views

Fallback on geolocation

I'm having trouble with the most basic aspect of geolocation - no matter what I do, I don't seem to be able to get the fallback to trigger. Here's the code: if (navigator.geolocation) { ...
0
votes
2answers
17 views

How is the skipping implemented in Spring Batch?

I was wondering how I could determine in my ItemWriter, whether Spring Batch was currently in chunk-processing-mode or in the fallback single-item-processing-mode. In the first place I didn't find the ...
0
votes
0answers
41 views

Fallback background image

I have a situation where I need to supply image from server side and I am advised to use a fallback image that will appear in case server-supplied image is non-existent. I don't know which image will ...
0
votes
1answer
87 views

HTML5 Video with Flash fallback not working

I am trying to use a video element for HTML5 video and a nested element for Flash fallback. I have seen code using flowplayer to fallback to flash - but their documentation only shows a javascript ...
1
vote
0answers
140 views

mediaelement.js video by flash fallback do not autostart

I use mediaelement.js to Play Video with fallback Option to Flash. It works fine for all new Browsers. The Video autostart by display the page, for example in IE9 an IE10. My Problem: In IE7 and IE8 ...
0
votes
0answers
25 views

If $feed->error(), get cached version

My SimplePie setup (here) is having an encoding problem with one of the feeds (here). This problem is persistent, so I'd like to make a fallback. Is there a SimplePie-function to force the script to ...
1
vote
1answer
32 views

Globalize3 order records by translated attributes and taking fallbacks into consideration

Im having troubles with awesome Globalize3 gem. For now I`m having two languages :en and :ru. And :ru falls back to :en like this #/config/initializers/globalize.rb Globalize.fallbacks = {:ru => ...
0
votes
2answers
37 views

Fallback for display:none / visibility:hidden in case javascript is disabled

Basically I initially set certain elements to display: none; and visibility: hidden; in my css file and that make them visible with help of jQuery. I was thinking, if users have javascript disabled, ...
-2
votes
2answers
137 views

How to add a PX fallback to Zurb Foundation 4 REM function?

I am using this SCSS function from Zurb Foundation 4 framework: @function remCalc($pxWidth) { @return $pxWidth / $em-base * 1rem; } it returns a REM value only, so it does not work with IE8. Is ...
0
votes
0answers
133 views

object tag html fallback loads even if flash player present

What is the best way to prevent html5 fallback code from loading alongside the flash swf one? I thought the fallback code only loads if flash player is not present, but it seems that it not only loads ...
0
votes
2answers
244 views

JQuery fallback for CSS3 transition

I'm looking for a JQuery/JS fallback for a simple CSS3 transition code. My javascript is really basic so it's not easy for me to find and write a replacement code. I already checked out modernizr but ...
0
votes
2answers
92 views

CSS3 transition-timing-function as javascript function

I need to create a Javascript-Fallback for CSS3-Animations and try to make it as close as possible to the CSS-Version. In CSS3, there are 4 predefined easing-functions: ease: cubic-bezier(0.25, 0.1, ...
1
vote
1answer
100 views

jQuery fallback for background image transition

I have a script that rotates between an array of preloaded images at a set interval to change the background image. I'm using transitions (transition: background-image 2s ease) to make the rotation ...
1
vote
1answer
309 views

Working example of mediaelement.js flash fallback working on IE9

I basically can't get mediaelement.js working on IE9 (and, apparently, even mediaelement.js' home page can't seem to do it). A friend told me to look into forcing IE9 to fall back to flash, so I was ...
0
votes
0answers
124 views

Having a fallback for the wowslider so it can function in IE7-9

I have a wowslider that I need working in IE7-9. I have generated the wowslider and it works with the strict doctype in IE however I need my website to be HTML 5. I have tried a HTML5 shiv and that ...
1
vote
1answer
130 views

Fallback solution for attributes in HTML5

This is a shema in HTML5. HTML5 has attributes like: autofocus, placeholder, date etc. Not all browsers supports these. Therefore I want to make some fallback functions. I'm not that familiar with JS, ...
0
votes
1answer
65 views

Fallback for CSS background image transition

I'm using CSS transitions for the background-image property, though from what I can gather they are only supported by Chrome and Webkit (it doesn't seem to work in Safari 5.1.7). I really don't want ...
0
votes
2answers
75 views

What is the maximum number of fonts you can use in a css font stack?

I would like to reference a number of Google and OS fonts in my font-family css declaration, however when I try to do this, only the first seven font references become usable. I know I am probably ...
2
votes
1answer
319 views

How do I use Svgeezy? (SVG fallback)

I'm trying to switch out the SVG images I am using to PNG on browsers that don't support them - namely IE8/7 and old versions of Android. After a lot of looking, I think I've found the tool for the ...
0
votes
0answers
46 views

FALLBACK cache manifest doesn't work

I'm a asp.net developer and I'm using the HTML5 offline features but the FALLBACK isn't working as I expected: when the server is down, instead the page listed of opening the page in FALLBACK is ...
1
vote
1answer
78 views

HTML5 Application Cache Manifest - index fallback without catchall

I'm delivering a manifest for my app that looks something like this CACHE MANIFEST #1359542586541 NETWORK: * FALLBACK: / /index.offline When offline, it works correctly by returning index.offline ...
1
vote
1answer
108 views

How to configure Windows Azure Web Role instances for a static HTML fall back site

I'm hosting a high traffic website on Windows Azure, i.e. 2 large Web Role instances to ensure 99.95% availability. However, in extreme circumstances when these instances go down (it could be due to ...
0
votes
0answers
44 views

Switch off I18n/Globalize3 fallbacks per Rails model basis

Is it possible to switch off I18n/Globalize3 fallbacks per Rails model basis? I.e. some models use fallback, some don't.
0
votes
3answers
2k views

Fallback AJAX file upload for Internet Explorer

I have implemented an AJAX file uploader in HTML5 using xHR2 and File api for an internal project. We were only required to support Firefox/Safari/Chrome. I used the following links as a reference ...
0
votes
2answers
56 views

Fallback to a solid color if texture cannot be loaded

My current renderer draws forms by the position and color of their vertices. It can't handle textures yet. struct Form { unsigned int Positions, Colors, Elements, Program; }; Now I want to ...
0
votes
1answer
25 views

How to fallback in a table?

I'm making a registration page in HTML. I'm using placeholder for inputs, but I am aware that some major browsers (IE <9, Firefox <3.7, Chrome/Safari <4.0) don't support this HTML5 feature. ...
3
votes
1answer
748 views

flash video fallback for IE7 and IE8 doesn't work

I've been looking and trying to find an appropriate video fallback for IE7 and 8. I haven't been able to find one so far. the cleanest code (which I would like to use) is pasted below. it comes from ...
2
votes
2answers
735 views

Embedded SVG (with fallback) without using jQuery

I need a way to 1) embed an SVG with a PNG fallback, and 2) use CSS in an external stylesheet to style colors on certain parts of the SVG while 3) without using jQuery. Background: At work we link to ...
1
vote
1answer
126 views

How we can disable fullscreen feature in Flash fallback of MediaElementJS?

Please help to fix this bug when use Flash fallback: Step 1: We click on flash player (Video is playing by flash fallback). Step 2: Press TAB button on keyboard (button fullscreen in flash will have ...
0
votes
1answer
158 views

jquery determine if css zoom is available in browser

$(button).click(function(){ if (Modernizr.zoom()) $('body').animate({ zoom: '200%'; }, 1000); else $('body').alternative(); }); As you can see above … I want to zoom in into my page on ...
2
votes
1answer
76 views

Flash fallback for javascript “ended” event listener?

I'm using this script to load a series of videos that a user has selected on a form on a previous page... it loads a video array using the <video> tag, and I was wondering what the best way to ...
1
vote
0answers
333 views

Videojs Poster Image Does not Display - Need Poster Image to Display when Device Doesn't allow Auto Play

I have a website with a video in the header that is set to auto play when the page loads. It works great on all web browsers except for iPhone and iPad. I recently discovered that the iPhone won't ...
2
votes
1answer
2k views

videojs Flash Fallback Not Working In IE8

I just recently started using html5 with videojs and I believe that I have everything working, however, the flash video fallback does not work with IE8 in WinXP. Also, its not just my site but the ...
0
votes
0answers
43 views

Replacement / Fallback code to handle NSPasteboardItems on OS X 10.5

Apple notes say that the NSPasteboardItem class was introduced in 10.6, but surely Mac applications could handle clipboard data before 10.6? I've become a Mac dev after 10.6 was released, so I don't ...
0
votes
1answer
565 views

fallback for an nginx upstream proxy

I have an nginx instance in front of a cluster of image servers: upstream img-farm-1 { server 10.0.1.1; server 10.0.1.2; server 10.0.1.3; server 10.0.1.4; # etc } location ...
0
votes
1answer
190 views

Locale fallback from country to language without having to define each individually

I am localizing an app with the default rails I18n with globalize3 as the back-end. Is it possible to set a locale with a country code (ie :fr-CA) to fallback to its specific language (:fr) before ...
2
votes
1answer
466 views

Turning SVG image into png for unsupported browsers - Fallback - modernizer.js(?)

I'm looking at turning a few SVG images I have on my site in PNG for browsers that don't support SVG properly. I'm mostly having issues with the text based ones being shown in IE (completely wrong ...
0
votes
0answers
61 views

MySQL find all relevant items in a view considering field value fallback

as i was not able to find an answer already posted, i'm trying it this way now. i hope you can help me out in this one. Image a multilingual structure at MySQL. table object { objectid (PK) ...
1
vote
1answer
182 views

fallback solution without javascript

Bootstrap has its own javascript version of checkboxes, radio buttons, collapse etc. Example radio buttons: <div class="btn-group" data-toggle="buttons-radio"> <button type="button" ...
2
votes
2answers
131 views

fallback cache manifest does'nt work

I can't find another issue like mine so here it is: I've got this cache manifest file : CACHE MANIFEST CACHE: ./index.html ./offlinetest.js ./offline.html ./cache.manifest ./cache.manifest.php ...
0
votes
1answer
113 views

Socket browser dynamic communication fallback [closed]

1. Forever iframe or script tag 2. Created and immediatly deleted iframe 3. AJAX xhr waiting and immediatly reopened after closure 4. AJAX xhr send and get 5. JSONRequest which is implemented with xhr ...
3
votes
1answer
222 views

Adding a fallback image for a swf in IE8 and lower using createElement?

I'm creating a script that's supposed to create an embedded SWF and also use a image as fallback if the user doesn't have Flash available. Since I'm not allowed to use any other libraries like ...
0
votes
2answers
3k views

Deprecated code in iOS 6 fallback to iOS 5

I have this custom back button: - (IBAction)backToMenu:(id)sender { [self.presentingViewController dismissModalViewControllerAnimated:YES]; } Testing my app in the iOS 6 simulator says ...
0
votes
0answers
240 views

Silverlight With HTML5 Video Fallback Plays Both At The Same Time

Note, this question is similar but not applicable (they didn't nest). I just wanted to get that out of the way. I have this code that uses Silverlight and then falls back to HTML5 <video> if ...
0
votes
1answer
807 views

Automatic fallback to jquery when css3 transition is not available (internet explorer)

Is there a library (or jquery extension) that provides automatic fallback to jquery when no css3 is available (as in internet explorer 9 for example) ?
0
votes
0answers
654 views

Jplayer: not loading Jplayer.swf on Firefox

It's been 3 days i'm fighting with a bad problem and, after many tries i gave up and came here to look for help. I built the website http://www.ordinarypeopleofficial.com using Wordpress and the theme ...
1
vote
3answers
411 views

How to add jQuery CDN fallback in XHTML?

It is good practice to load a CDN-hosted jQuery but to fallback to a local file. E.g. HTML5 Boilerplate does it like this: <script ...
2
votes
3answers
353 views

Fallback background for browsers not supporting border-image

I'm trying to use CSS3 border-image for a simple button design: the left slice of the image should be the left border of the text, the right slice the right border, and the middle slice should be ...
3
votes
2answers
304 views

Rails 3 - Is there any fallback for when serving assets from an asset server fails?

In my production.rb I've set this: # Enable serving of images, stylesheets, and JavaScripts from an asset server config.action_controller.asset_host = "http://myassets.com" And the images, js and ...

1 2 3 4