Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
5answers
8k views

Jquery: Why am I getting an OPTIONS request insted of a GET request?

With this code http://paulisageek.com/tmp/options.html : <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js" type="text/javascript"></script> <script> ...
11
votes
7answers
28k views

Hide options in a select list using jQuery

I have an object with key/value pairs of options I want to hide/remove from a select list. Neither of the following option selectors work. What am I missing? $.each(results['hide'], function(name, ...
10
votes
2answers
164 views

JSON Object passed to External JavaScript - Cool Technique

I was looking at FireBug Lite and saw that they use a pretty cool technique to pass options into an external script file. <script type="text/javascript" ...
10
votes
5answers
8k views

Hide select option in IE using jQuery

Currently I am using jQuery to hide/show select options using following code. $("#custcol7 option[value=" + sizeValue + "]").hide(); This works fine in Firefox, but doesnt do any good in other ...
8
votes
2answers
108 views

How do I get interdependent options?

I want to do something like foo[OptionsPattern[]] := OptionValue[b] Options[foo] = {a -> 0, b :> OptionValue[a]}; foo[a -> 1] and have Mathematica give me 1, instead of 0. Is there a ...
7
votes
3answers
250 views

Emacs shell scripts - how to put initial options into the script?

Inspired by Stack Overflow question Idomatic batch processing of text in Emacs? I tried out an Emacs shell script with the following headline: #!/usr/bin/emacs --script I put some ...
7
votes
4answers
336 views

Options, Settings, Properties, Configuration, Preferences — when and why?

There are several words with similar (in some sense) meaning: Options, Settings, Properties, Configuration, Preferences English is not my native language. Could you explain the difference in ...
7
votes
1answer
329 views

How to set default XAML view in Visual Studio 2008

In Visual Studio 2008, when you add a new XAML window to a WPF Application Project, the default view you get is "split view" where the visual designer and the XAML code are shown one above the other ...
6
votes
5answers
514 views

Someone knows a good File System API?

I need options for API's that handle file systems. I know Dokan, do you know others?
6
votes
8answers
1k views

How do you handle command line options and config files?

What packages do you use to handle command line options, settings and config files? I'm looking for something that reads user-defined options from the command line and/or from config files. The ...
5
votes
3answers
76 views

How to format text in php when we have 2 or more options

I'm trying to make a simple script that allow formatting text and submit it. Here is the form: <html> <head> <title> </title> </head> <body> <form ...
5
votes
4answers
421 views

When (not) to abuse NSUserDefaults

I wonder what the guidelines are for: 1 - how often I can read from NSUserDefaults 2 - how much data I can reasonably store in NSUserDefaults Obviously, there are limits to how much NSUserDefaults ...
5
votes
3answers
557 views

GCC -fPIC option

I have read the link about GCC's Options for Code Generation Conventions, but could not understand what is "Generate position-independent code (PIC)". Please give an example to explain me what does it ...
5
votes
3answers
445 views

Idiomatic way to use Options's in Scala

I am converting some Java code to Scala, trying to make the code as idiomatic as possible. So, I now have some code using Options instead of nullable values, and I wonder whether things are ...
5
votes
2answers
5k views

Adding optgroups to select using javascript dynamically

I have a dynamically populated (by ajax) select box with resulting options like that: <select id="destination" name="destination"> <option value="london-paris">London-Paris</option> ...
5
votes
1answer
6k views

Apple's gcc, what's the difference between -arch i386 and -m32?

According to Apple's gcc 4.2.1 doc: -arch arch Compile for the specified target architecture arch. The allowable values are 'i386', 'x86_64', 'ppc' and 'ppc64'. Multiple options work, and ...
5
votes
2answers
313 views

Is there a package to process command line options in R?

Is there a package to process command-line options in R? I know commandArgs, but it's too basic. Its result is basically the equivalent to argc and argv in C, but I'd need something on top of that, ...
5
votes
6answers
1k views

How to stop IE asking which debugger to choose when **trying** to debug?

When debugging in Internet Explorer; I first get an alert box with extremely limited if not useless information (sorry IE) and choice to debug it; After selecting yes; I get another option every time ...
4
votes
2answers
59 views

refer to options within variables in jQuery

just curious about jQuery/Javascript and referring to options within variables. So, I wrote a little plugin that when I call "populate" will fill in some text. Very basic. Here's what I'm trying to ...
4
votes
1answer
129 views

understand -XX java flag

starting my java app with the following command line : java -XX:+PrintCommandLineFlags -verbose:gc -XX:+PrintGCDetails -XX:+UseConcMarkSweepGC -jar start.jar the JVM enables the following options : ...
4
votes
1answer
121 views

Detecting ambiguous options with Getopt::Long

Is there an easy way to detect ambiguous options with the Perl module Getopt::Long? For example: #!/usr/bin/env perl # test ambiguous options use Getopt::Long; my $hostname = 'localhost'; ...
4
votes
2answers
92 views

Magento Option Question

This seems simple enough in theory but I haven't found anything on it. I need it for a client. Please see this page as an example: http://www.customsportsteamuniforms.com/index.php/test-shirt.html On ...
4
votes
4answers
135 views

Option strict on by default in VB.NET

Whenever I created a new VB.NET program I must go into project's proerties and set 'option strict' on. Can I do that once so it is a default for every time I create new project?
4
votes
2answers
81 views

enable tinyMce on all the node except one

node/* user/* comment/* This is what i am using to enable tinyMCE drupal on particular pages. Now what i am looking for is to apply on all the NODES except the one having id (eg 100). How can i do ...
4
votes
5answers
2k views

Can an option in SELECT tag carry multiple values?

I got a select tag with some options in a HTML form: (the data will be collected and processed using PHP) Testing: <SELECT NAME="Testing"> <OPTION VALUE="1"> One <OPTION ...
4
votes
4answers
156 views

Is there a name for the technique of using base-2 numbers to encode a list of unique options?

Apologies for the rather vague nature of this question, I've never formally been taught programming and Google is rather useless to a self-help guy like me in this case as the key words are pretty ...
4
votes
1answer
1k views

How to write custom data to the TCP packet header options field with Java?

As it is defined (see: http://www.freesoft.org/CIE/Course/Section4/8.htm) the TCP header has an 'Options' field. There are a couple of options already defined (see: ...
4
votes
2answers
8k views

Controlling digits in R

There is an option in R to get control over digit display. For example: options(digits=10) is supposed to give the calculation results in 10 digits till the end of R session. In the help file of R, ...
4
votes
2answers
388 views

Can vim be made to only expand tabs to the left of text?

Using vim, I would like to effectively have expandtabs off if I'm to the left of any text on the line and on if I'm to the right of any non-whitespace character. (I would like to use tabs for ...
4
votes
1answer
481 views

Maintain multiple Visual Studio user options (suo) profiles

I work in two environments with Visual Studio 2008: my laptop and my laptop+external monitor. When I work with a second monitor, I like for my solution explorer and other non-code windows to be on the ...
4
votes
2answers
396 views

How hierarchical are Delphi 2009 project configuration option sets?

Delphi 2009 introduced a hierarchical system for project options configuration, where you set "base" options and then have different build styles with their own option sets. But can you extend the ...
4
votes
2answers
2k views

Handling OPTIONS request in nginx

We're using HAProxy as a load balancer at the moment, and it regularly makes requests to the downstream boxes to make sure they're alive using an OPTIONS request: OPTIONS /index.html HTTP/1.0 ...
3
votes
1answer
99 views

http post request with cross-origin in javascript

i have a problem with a http post call in firefox. I know that when there are a cross origin, firefox first do a OPTIONS before the POST to know the access-control-allow headers. With this code i dont ...
3
votes
1answer
208 views

What do these undocumented Style options in Mathematica do?

As mentioned in an earlier question, I have uncovered some style options that don't appear in the Mathematica documentation. Style["This is a test", LineColor -> GrayLevel[0], FrontFaceColor ...
3
votes
3answers
308 views

Remove select options in jQuery

All, I have two selects that look like this: <select name='input_34' id='input_1_34' class='small gfield_select' tabindex='1' > <option value='29' >Alabama</option> <option ...
3
votes
1answer
362 views

How can I change my Visual Studio 2010 Help (F1) from local to online?

The first time I pressed F1 in Visual Studio 2010, I mistakenly chose to use local help files (which I don't have) rather than online. Now, whenever I press F1 in VS2010, The Microsoft Help Viewer ...
3
votes
2answers
88 views

GCC: C standard being used

Instead of going through a list of of possible standards seeing which doesn't give errors, is there just a simple gcc option I can use (just checked, not likely) or a config file or info file in the ...
3
votes
2answers
202 views

Storing binary string in MySQL

I've developed a small binary flag system for our admin centre. It allows us to set items to have multiple options assigned to them, without having to store have a table with several fields. Once the ...
3
votes
1answer
457 views

JQuery POST request transforming into OPTIONS. Why?

I explicitly specify a POST and I don't see the post data in the Request and more over specifies it has a OPTIONS. The response should be a HTML specifying matching users to Query in table format. I ...
3
votes
6answers
168 views

Is it a bad practise to define class options through an array?

When we take a look at Javascript frameworks like Dojo, Mootools, jQuery, JS Prototype, etc. we see that options are often defined through an array like this: ...
3
votes
2answers
731 views

How can I set my options menu up so that there are only 2 buttons per row?

I was trying to set up my options menu so that there would be 2 buttons on the 1st and 2nd row and then 1 button on the 3rd row. Here is the code I was trying to use but I'm guessing groupID argument ...
3
votes
2answers
443 views

Problem with multiple select removing more than 1 option

Ok, there seems to be a problem with the JS Code for Opera browsers, as it only removes the last option tag that is selected within a multiple select tag, can someone please help me. Here is the HTML ...
3
votes
2answers
856 views

Changing options in select box based on different select options

I have 2 select options. I want to change the drop down options in second select options based on what I select in first select options. How do I do that in jquery? <select id="Manage"> ...
3
votes
4answers
112 views

SVN branch question

When creating a branch, what are the implications of selecting the following? Create copy in the repository from: HEAD revision in the repository Specific revision the repository Working copy
3
votes
3answers
2k views

How can I download options data from yahoo using Perl?

I am trying to get yahoo options data into mysql using perl. I found modules to download stock prices, but not options data. Anyone know what would be the easiest way to do that? If I have to roll ...
3
votes
2answers
667 views

css - dropdown (option, select)

I have been able to control the width of the option etc. However, you know that the selected option gets highlighted by making background blue and text-color white by default. That blue background ...
3
votes
6answers
427 views

Options for developing a web-based game

I am currently looking around for some tools for developing games on the webs. I want to avoid Flash because I have seen that many Flash games stutter a lot even on mid-end machines. The good thing ...
3
votes
2answers
1k views

firebug net monitor options

I have an issue where I executing an AJAX request. Instead of seeing the normal POST or GET preceeding the action page url, I see OPTIONS. The data is successfully posted, but there is no response ...
3
votes
4answers
11k views

Javascript to Select Multiple options

I have a form with a select box that allows multiple options. After a user saves these options, it stores them in a database table. I can then read this database table to get the options they chose ...
3
votes
1answer
234 views

How do I change the background color of a conditional macro in eclipse?

How do I change the background color of a conditional macro in eclipse? I am using the C/C++ version of eclipse so I would assume it would be associated with a mysterious preprocessor background color ...

1 2 3 4 5 8