options

jquery theme settings options

Creating this theme, I'm pretty new to jquery and struggling as usual. Just watched this tutorial and decided to have a shot at making my own theme settings to simplify customization. This is what i have so far: (function($){ $.fn.themeSettings = function(options) { var slideshow = { ...

(Mobile) Browser support for Cross-Origin Resource Sharing?

I'm building a site that uses w3c CORS to make oAuth-signed HTTP requests to a remote server. Mozilla has a great document explaining how to make and receive CORS requests, and there's good support in firefox, chrome, and safari. Does anyone maintain a matrix of browser support for CORS features (e.g. preflight OPTIONS requests for cro...

Get drop down value

How to determine what is selected in the drop down? In Javascript. ...

WPF/C#/MVVM: Need Some Help Implementing Custom View Options for User Control

The project I am currently working on is a text editor type app. I am wondering how I can handle custom view options. eg. font family, size, bold, colors for myTextBox. My Editor Tab is a EditorTabViewModel within the View is a custom user control MarkdownEditor. Its basically a text box with some buttons for bold/italic etc. I am wonder...