Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
4answers
729 views

jQuery dollar sign ($) as function argument?

I understand JavaScript closures, and I've seen this done in native JS: (function () { // all JS code here })(); But, what does adding the jQuery spice do? (function ($) { // all JS code here ...
10
votes
3answers
350 views

Why do I see JavaScript variables prefixed with $?

This is sort of a meta-question. Many snippets of JavaScript I've seen here on SO are named with a dollar sign prefix (for example, $id on the second line of the snippet shown in this question). I'm ...
9
votes
3answers
233 views

What is the outcome in javascript with multiple librarys that use $

Let's pretend this is in the <head> of your html page. OOPS this was a bit that was missing before...: <script type="text/javascript" src="/include/js/billys.js"></script> ...
6
votes
6answers
431 views

What is the difference between webkit's `$$` return and jQuery `$` return?

If in a webkit browser like Chrome i do: $$('span'); I get a result that looks almost exactly the same as jQuery's: $('span'); If in the console I look for definition of $$ I get: bound: ...
6
votes
6answers
665 views

Is there an inverse of the Haskell $ operator?

A quick question, is there an operator in Haskell that works like the dollar sign but gives precedence to the left hand side. I.E. instead of f (x 1) being written as f $ x 1 I'd like to write ...
4
votes
5answers
271 views

When/why to prefix variables with “$” when using jQuery? [closed]

Possible Duplicate: Why would a javascript variable start with a dollar sign? I see people using the dollar sign in front of variables when using jQuery. Is there any reason behind this? ...
3
votes
1answer
320 views

virtualenvwrapper .hook problem

I've used virtualenvwrapper, but I'm having problems running it on a new computer. My .bashrc file is updated per the instructions: export WORKON_HOME=$DEV_HOME/projects source ...
3
votes
2answers
1k views

Four Dollar signs in Makefile

I am reading the document of GNU Make. Here is an example %.d: %.c @set -e; rm -f $@; \ $(CC) -M $(CPPFLAGS) $< > $@.$$$$; \ sed ’s,\($*\)\.o[ :]*,\1.o $@ : ,g’ < $@.$$$$ ...
2
votes
1answer
70 views

Unescaped dollar sign doesn't throw error; PHP processing edge case?

I've run into what seems like a strange edge case with the PHP processor. According to the PHP manual: Variables in PHP are represented by a dollar sign followed by the name of the variable. The ...
2
votes
1answer
91 views

Meaning of Dollar Sign & Curly Braces Containing Javascript Block Outside of HTML Script Tag

I'm currently reading 'Javascript Web Applications' (O'Reilly, Alex MacCaw) and very early on there's a code snippet which might appear to execute a JS function, within an HTML document, yet it is not ...
2
votes
1answer
92 views

Accessing object variable via double dollar sign

I'm building a class in order to get variables form another php files conveniently. Problem is that I'm using double dollar sign in order to get create $variable_name => $$varible_real_value styled ...
2
votes
2answers
79 views

successive js methods

I have a JS function that selects some elements based on the parameters function getElement() { var scope = document; this.by = function(data) { for (key in data) { if ...
2
votes
1answer
122 views

ANTLR dollar sign

I have been following this guy's tutorial (http://vimeo.com/groups/29150/videos/8137747), and they are great; the only problem is that when I use the "$" sign in my grammar file, like he does, I get ...
2
votes
2answers
734 views

What are the Special Dollarsign Variables (Possibly bash Only)?

In bash, there appear to be several variables which hold special, consistently-meaning values. For instance, ./myprogram &; echo $! will return the PID of the process which backgrounded myprogram. ...
2
votes
3answers
377 views

jquery Dollar sign

i have this html: <ul id="list1" class="eventlist"> <li>plain</li> <li class="special">special <button>I am special</button></li> ...
1
vote
1answer
129 views

Meanings of dollar sign in Java method descriptor?

For example, its part of the Jikes RVM stack. at [0x70cfba90, 0x708cfaa4] Lorg/apache/lucene/index/SegmentInfos; **access$000**(Ljava/lang/String;)V at [0x70cfbb04, 0x708b55c8] ...
1
vote
3answers
160 views

Groovy inspect() handle dollar sign($)

below code can not run def map = [name:"Test :: ( %2f %25 \$ * & ! @ # ^)"] String s = map.inspect() println Eval.me(s) get error: Script1.groovy: 1: illegal string body character after dollar ...
1
vote
2answers
309 views

JQuery Dollar Sign Confusion

I'm a bit confused regarding the dollar sign in JQuery, and was hoping someone could help me out. I have the following function declaration: $(function() { $( "#create-discussion" ...
1
vote
5answers
78 views

What does putting a javascript function inside a '$()' do?

I'm learning some AJAX right now and the jQuery function that is being used to submit the form is wrapped inside $( function() { } ) as so. What does this exactly do? $(function() { ...
1
vote
3answers
675 views

latex: dollar $ sign within lstlising

I am trying to put some asm code into a latex document, onfurtunatly pdflatex treats the $ signs within my document as math env (which I do not want). On the other side I'd still like to use that ...
1
vote
4answers
1k views

How to echo a variable containing an unescaped dollar sign in bash

If I have a variable containing an unescaped dollar sign, is there any way I can echo the entire contents of the variable? For example something calls a script: ./script.sh "test1$test2" and then ...
1
vote
2answers
131 views

Should I be able to quote a leading or trailing dollar sign ($) inside a word boundary in Java Regular Expression?

I'm having trouble getting regular expressions with leading / trailing $'s to match in Java (1.6.20). From this code: System.out.println( "$40".matches("\\b\\Q$40\\E\\b") ); System.out.println( ...
1
vote
5answers
354 views

What's the difference between ‘var $x’ and ‘var x’ in jQuery? [closed]

Possible Duplicate: Why would a javascript variable start with a dollar sign? What's the difference between ‘var $x’ and ‘var x’ in jQuery?
0
votes
2answers
43 views

Double Dollar Sign - Assign Array key=>value

I would like to create 3 different arrays which can change depending on which fields are pulled from some mysql tables. This is the code I have: // Gather db rows with query ...
0
votes
1answer
67 views

How to parse JSON graph with special character annotation using Json Jackson?

here is my graph "seriesType": { "code": "83001", "$": "Série" } How do I parse this json with json jackson? I am not able to because the dollar sign is generating an error. i tried this public ...
0
votes
2answers
67 views

Currency Formatting Canadian English and French

I have a requirement to set the value based on the locale. I will get the locale either en_US or fr_FR String locale = object.getLocale(); // Then based on the locale I need to define the ...
0
votes
2answers
76 views

How to get a JSON with dollar sign

suppose I have {"data": {"243232": {"id": "testid","name": "test" } }} so how to get correct value thanks.
0
votes
2answers
129 views

Java properties containing dollar delimited variables

I'm storing my app settings in properties file that I use in Ant and in the Java app. Maybe it's not good pratice, but I find it very handy to avoid duplications. The file contains variables such as: ...
0
votes
1answer
100 views

Notepad++ Zen Coding : Print $ (dollar sign)

I'm using N++ with Zen Coding. And now i want to make a shortkey. Usually I edit the ZenCoding.js, But when I tried to print Dollar sign, it failed. My question is, how to print dollar sign, with Npp ...
0
votes
1answer
50 views

Getting all selects with the same selected value in Prototype $$()?

How get all select with the same "selected value" in Prototype $$()? Example: all select with "5" select value <select name="first"> <option value="">-- Selecione --</option> ...
0
votes
1answer
290 views

Groovy XML Parser Dollar Sign in Attribute $

I am using XMLParser to parse an xml document that has the following structure: <Tag> <SubTag att1="some.directory.structure.ClassName$InternalClass" att2="value2"/> </Tag> I ...
0
votes
2answers
313 views

JavaScript dollar function, function $() error

I've come across the dollar sign function over the internets and decided to use it for a javascript toggle menu. However, the "$" symbol makes my code fail. This is what I'm trying to use: function ...
0
votes
3answers
1k views

Double dollar sign php

I found myself using this kind of code in one of my controllers: foreach(get_object_vars($this->view) as $property=>$value){ $$property = $value; } Is there any problem with using the ...
0
votes
1answer
316 views

Latex Dollar Sign \\ How do I signify Linux Environment Variables in latex?

I am aware to output dollar signs you escape it with \ such that: \$ % prints '$' However, I can't print something like \$ JAVA_HOME % prints '$ JAVA_HOME' The space in between ...
0
votes
4answers
314 views

What is the purpose of PHP having a symbol (the dollar sign) in front of each variable? [closed]

Possible Duplicate: Why PHP variables start with a $ sign symbol? I have looked at other programming languages and it seems that most of them do not have any symbol to show that something ...
0
votes
2answers
255 views

Variables in mootools dollar sign element calls

So I have an element I want to modify (with Fx.Tween, but I suppose it doesn't really matter). However, the element id is dynamically generated, meaning I have to piece it together from some ...
0
votes
5answers
2k views

MooTools and jQuery conflict - despite Dollar Safe Mode

I'm trying to get some pre-existing MooTools code to function properly within a Drupal site. I know the MooTools code works on its own. Once I load the MooTools library in the page, jQuery stops ...
0
votes
1answer
332 views

PHP escape $ sign and echo a string my fetching database

I want to know how to echo a string that have a $ sign from a database. At this time, the value on database 'Buy one for $5.00' converts to 'Buy one for .00'. Let's say the name of the field is title ...