CSS selectors specify which elements a given style applies to.
2
votes
2answers
31 views
jQuery wildcard selector on attributes
I have this stuff
<table>
<tr>
<td>
foo
</td>
<td>
<a href="#" data-action:edit="1">[EDIT]</a>
<a href="#" ...
1
vote
4answers
46 views
Styling HTML element with attribute inside another class
My HTML element has an attribute and the goal is to give a certain style to this element when found inside another class.
for ex.:
<style>
em {color:#ff0000;}
.emClass {color:#ff0000;}
...
0
votes
1answer
33 views
Combine browser selectors with LESS
Is it possible to combine the -webkit, -moz, -o, and -ms selectors into one with LESS?
I tried doing
.transition(@t @d) {
transition:@t @d;
-webkit-transition:@t @d;
-moz-transition:@t ...
0
votes
0answers
33 views
How to get all classes with a specific prefix in css?
I know we can do this matching attributes with: div[class*=something] but I don't want the attribute prefix but the class prefix, like: .icon-[something].
Is there some way to get all classes with a ...
0
votes
1answer
31 views
Objective C Selector not defined in interface but still OK
First post. Trying to learn objective C. I have decent OOP knowledge. I have a bit of C, C++ and Java background but rusty. Unfortunately I'm having a hard time wrapping my head around some Objective ...
0
votes
3answers
36 views
How to create a menu that rolls down? CSS
Example:
<div id="one">
(content)
</div>
<div id="two">
<ul>............</ul>
</div>
I want to create an effect that appears that #two is comming down ...
0
votes
2answers
51 views
Dynamically create a selector in jquery and use 'this' [duplicate]
Hopefully I can explain this properly.
I am trying not to repeat code and have a loop that binds the hover function to a specific model in a menu that shows about 30 models. I want to be able to add ...
1
vote
2answers
62 views
If class other than my class is present
I have a dynamic list that looks something like this
<li>item 1</li>
<ii>item 2</li>
<ii class="route2">item 2</li>
<ii>item 3</li>
<ii>item ...
0
votes
2answers
55 views
Jquery selector for hiding element that has an children element with class
This is a sample html
<iframe id="theiframe">
...
<form>
<div class="pluginConnectButton">
<div class="pluginButton pluginButtonInline ...
2
votes
2answers
62 views
p.classname or .classname p, any difference?
So, I am a bit confused over this simple thing, i've googled as much as i could, but i just dont know the right keywords for googling it, i tried CSS selectors, etc, no answer was enough to clear my ...
0
votes
2answers
21 views
css: many sibling selectors on the same line
In my stilesheet I have something similar of what follows:
h2.foo1 ~ p.bar1 {
...
}
h2.foo2 ~ p.bar2 {
...
}
h2.foo3 ~ p.bar3 {
...
}
Since the properties defined within brackets are the same ...
0
votes
2answers
77 views
jQuery selector with $(this) as an element
I have found this form of selector inside a plugin, can anyone explain it to me?
var container = $(this);
var myDiv = $('div', container);
The idea is to only select the div element, why would it ...
1
vote
3answers
158 views
Efficient CSS selector
I know we should avoid using CSS descendant selectors but I was just wondering which of these two is more efficient and why ?
#myDiv .childDiv .grandchildAnchor span
or
#myDiv > .childDiv > ...
0
votes
4answers
78 views
Using JQuery to switch selected row of table
So... I have a table. When a row is clicked on, it is given .active and the row is highlighted. I need to work on other ways to change the selected row other than clicking on it. For my example, ...
0
votes
2answers
58 views
move the div upon checkbox checked
I am trying to implement a elevator functionality [there are 6 floors and corresponding
to each one , there is a checkbox. Depending upon which checkbox is checked, the elevator
shud move to ...
1
vote
1answer
46 views
Constraining CSS class styles to apply only to a given id
I am trying to use two Twitter Bootstrap navs on the same page. I have written some css to style them. Problem is, I want the css to apply to just one of the navs. I tried to use css ids to ...
0
votes
1answer
92 views
jquery toggle (show/hide) based on selector
I want to create animation based on jquery, below is my code;
>items=document.querySelectorAll("#customers td span");
[<span alt=" 02,Counter,11,2013-04-06 14:59:16"> ...
0
votes
3answers
94 views
jquery selectors getting unique id
I'm trying to get the row contents by selecting the tr element which has a unique id.
This is what i have so far, i'm fairly new to this, and really unsure why this isn't working.
var value = ...
0
votes
1answer
72 views
performClick() doesn't activate selector
I created a layout with a radiogroup cotaining two buttons. Then i got a drawable selector.
I applied the selector with android:background and withandroid:button to remove the little circles.
In the ...
0
votes
1answer
144 views
Android's selector for selected item does not work
I have a listview, where I want to highlight selected items in a custom way. I'm setting every item properties in the adapter's getView method, including itemView.setSelected(true).
The main layout ...
0
votes
1answer
140 views
d3.js: select multiple selectors with selectAll?
Is it possible to select multiple selectors in d3 using selectAll?
Something like svg.selectAll("class1", "circle", "id2") to select all circle elements, class1 elements and id2 elements?
0
votes
3answers
105 views
Make a div a appear and stay after parent div has been clicked on using CSS
I would like a div (currently display:hidden;) to appear after the parent div has been clicked on, and stay there using CSS.
I have currently made it appear when "clicked on" with :active, but as ...
0
votes
2answers
97 views
Scrapy. Extract html from div without wrapping parent tag
I use scrapy to crawl a website.
I want to extract contents of certain div.
<div class="short-description">
{some mess with text, <br>, other html tags, etc}
</div>
...
-1
votes
4answers
61 views
select spans in td that don't contain a class
EDIT: I made a typo in the question, my apologies.
<td><span class="price"></span></td> //selected
<td></td> //I want this guy to be selected as well!
...
0
votes
1answer
75 views
mootools group checkbox return values
How can I return selected checkboxes values from mootools class:
Mootools class:
var CheckboxGroup = new Class({
Implements: Events,
initialize: function(master, slaves) {
...
0
votes
1answer
40 views
Highstock use select instead of From/To
In highstock, the range selector provides two inputboxes for the date selection. Is it possible to use a select dropdown instead of the From/To inputboxes?
For example, i have the chart below:
I ...
1
vote
0answers
163 views
What to use? Thread Pool OR Selector OR poll OR epoll (libev library)
My Android (2.3 and above) application needs to have TCP communication with 100 (maximum) embedded devices running TCP servers at same time.
The smartphone app should be robust enough to handle 100+ ...
0
votes
2answers
95 views
how to select several input values in an array using jquery
I have a HTML doc like this
<div>
<span>checkbox 1 : </span><input type="checkbox" value="12" />
<span>checkbox 2 : </span><input type="checkbox" ...
0
votes
1answer
57 views
jQuery TinySort can't select divs to sort them, or something else is blocking the sort
I'm trying to have the jQuery plugin TinySort sort divs by the href attribute of their links.
The divs I want sortable ("box") are divided evenly within two separate divs ("row1" and "row 2") and ...
0
votes
4answers
106 views
Changing multiple attributes on multiple selectors does not work?
I am trying to learn and understand jquery and I'm having some trouble with multiple selectors. I can't seem to update the attributes, id and name, when I have a cloned jquery object in one of my ...
0
votes
2answers
36 views
Combine different events of different selectors to one function
How do I combine $('#foo').click() and $('#bar').change() in one and same function? #bar may not be triggered by click, and #foo not by change.
So hypothetically:
$('#foo').click() + ...
1
vote
3answers
111 views
jQuery - select elements containig custom data
I have a couple of elements like
<p data-lang-bg="Bulgarian" data-lang-en="English" >Text</p>
<p data-lang-bg="Other bulgarian text" data-lang-en="Other english text" >Text ...
0
votes
3answers
66 views
Click event in dynamically Selected elements charged by ajax with jquery
I need to capture the click event of an element charged with ajax in a table.
After get the dynamic content, I can see the alert result with total number of elements with: alert($(".link").length);
...
0
votes
0answers
33 views
variables and selector combinaton in jquery
I’m a little confused with variables and selectors..
I have this code:
var base = $(this);
base.$v_nav = base.find(".v_nav");
$(".v_nav[data-tab^='"+h_active+"']").addClass("v_active");
and i ...
0
votes
1answer
69 views
Why does this jquery selector not recongize these images
I have an xml function I am using to load data and append to a div.
The css and jQuery for div.thumb img is not selecting the images.
JavaScript:
$(document).ready(function () {
function ...
1
vote
1answer
95 views
How to pass multiple values using multiple selectors
Here is what I have done so far:
<label for="popupDatepicker">DOB<span class="red">*</span></label>
<input class="text1" type=text id="popupDatepicker" ...
0
votes
1answer
42 views
jquery on and using jquery complex selectors
I have this selector:
I have anchors around the page that start with a slash like this
<a href="/projects/case-study/">Link to case study</a>
And I also have this to stop them from ...
1
vote
7answers
106 views
Add class to element with ONLY a child element
I would liek to use jquery to find every single instance of a strong tag within a p tag, and add a class to the p tag like so:
<p><strong>Bold Text</strong></p>
will become
...
0
votes
1answer
61 views
Jquery selectors on ajax response
I receive ajax response as html, and I need to extract content of specified div.
It works:
function callback(data) {
container = $(data).filter('div.container#container');
container_in = ...
-1
votes
3answers
60 views
Accessing data from data attribute using jquery
I have been trying to access the data and nested elements after the data attribute is itentified but I have no luck, here is the code:
...
1
vote
4answers
62 views
Jquery Selecting a class when multiple class are present
I have the following in a jquery script:
if ( path[1] ) {
$('.content_nav a[class$="' + pos1_path + '"]').toggleClass('current');
}
which selects the appropriate element, such as:
<a ...
2
votes
3answers
64 views
jQuery - targeting Sibilings , Parents , Descendents and other family animals
I had a small markup test for toggling a div .
A (working) mockup can be found here : http://jsfiddle.net/obmerk99/d78aF/1/
The problem is , that I need the Hide / Show link to be placed in ANOTHER ...
1
vote
1answer
94 views
ActiveMQ 5.7.0 Selector not working in C#
I have a very simple ActiveMQ message consumer that's created in C# as follows:
using(IMessageConsumer consumer = session.CreateConsumer(destination,"NMSCorrelationID='<value of correlation ...
2
votes
2answers
42 views
ExtJS4 Selector in a Region
I am attempting to ref a grid that is in a region:
...
region: 'south',
layout: 'fit',
split: true,
items:[{
xtype: 'grid',
border: false
...
}]
...
in the refs section of my ...
1
vote
3answers
75 views
CSS How to override specific selectors in parent theme?
I am creating a child theme of the Limon theme. This parent theme uses a lot of specific selectors such as
div#container_wrap {}
div#header ul#nav {}
div.page_heading {}
I am doing a fair bit of ...
1
vote
2answers
70 views
Why are the buttons in this toolbar not firing their target actions?
I've been banging my head against the wall for an hour. The buttons created by this code ought to fire, and they don't.
-(void)createToolbar {
[self.bar removeFromSuperview];
self.bar = [[UIToolbar ...
0
votes
1answer
147 views
dynamic record access
i'm relativity new to delphi and trying to write a complex search algorithm for my a2 computing coursework. i need to access my record field from a string variable.
e.g.
...
0
votes
1answer
62 views
Text selection style
Is it possible to change text selector (selection, cursor, etc.) color or style for my android application somehow (like for one in the link below)?
Selection image example
Or it is default for ...
0
votes
3answers
73 views
jQuery selector not html tag or class or id
I was wondering if the following is possible.
When you want to assign a handle to an id its used as $("#idhere")
When you want to assign a handle to a class name its used as $(".classname")
When you ...
0
votes
1answer
62 views
Use array to store jQuery Selectors
I'd like to be able to have an array full of jQuery selectors as such (an array of class names). This is what I'm doing at the moment though it's not functioning:
var array = [$('.one'),$('.two')];
...









