Tagged Questions
0
votes
0answers
17 views
Printing an input's value, using a print media stylesheet
I'm using the following jQuery plugin to get a nice, user-friendly print preview and then printing using a print version of the stylesheet.
https://github.com/etimbo/jquery-print-preview-plugin
...
1
vote
1answer
113 views
Jquery Ui dialog button changes position on mouse hover
I am using jquery ui dialogue and adding buttons using jquery like this:
$("#151").dialog({
autoOpen: false,
autoResize: true,
buttons: {
...
1
vote
2answers
452 views
Why jQuery Tooltip does not show html content?
I have created a jQuery Tooltip on html page. I want to show a tooltip with html content inside on a hyperlink. But the jQuery Tooltip just show all html text as normal text inside the tooltip but ...
-1
votes
2answers
42 views
why jquery for modifying style properties?
when it comes to modifying formatting and layouts (style sheets) why would jquery be more advantageous compared to plain javascript??
plain javascript already provides functions like ...
1
vote
1answer
65 views
Replacing a stylesheet in a complex header
I have a website that I need to create a stylesheet switcher for. Now I am pretty much self taught when it comes to all things html/css/js so please forgive my newbness in advance. I modified some ...
0
votes
3answers
58 views
Jquery code is returning true when is not supposed to
I have this code in jquery to add diferent css styles according to the browser since i can't get stuff in the exact same place.
This is the code that adds the link to the style sheet when the user is ...
0
votes
2answers
93 views
Inline div with nowrap and overflow hidden
I have a top bar with multiple div inside. It works as expected in Chrome but in Firefox, the .third div got wrapped around in a second row. How to make the .third div in Firefox to have nowrap like ...
0
votes
1answer
93 views
how to replace entire css text with another?
I have web page with different styles that the user can change and build on the fly.
I have this code working with browsers IE-9+,chrome,FF,safari.
if($("#customCss").length>0)
...
0
votes
2answers
87 views
$.getScript, but for stylesheets in jQuery?
Title says it all. Is there a $.getScript equivalent in jQuery, but for loading stylesheets?
0
votes
0answers
96 views
Completely hide div if it is shown partially
I have a bar container with multiple divs inside. Some div like .first would have enough width to show all inside text. But some like .third only show text partially.
I would like to:
Show the ...
2
votes
2answers
62 views
Fluid width of input element
I have a top bar (yellow) with fixed position and width as 100%. Within the bar, left div (red) could be any width (fluid). The right div (green) contains input element that:
Need to have width as ...
-1
votes
1answer
131 views
using custom style sheet with jquery ui [closed]
I am using jquery UI in my asp.net MVC website. On one page I click a button, then a new window is opened as window.open. The newly opened windows opens Jquery UI popup on load. I am passing a ...
1
vote
4answers
131 views
Center a div vertically and horizontally amongst other inputs and divs
I already did a few search on this and it made me insane:
I need to make the text "CENTER & MIDDLE THIS" centered in the area below the textarea and above the bottom of .input like this:
...
4
votes
2answers
155 views
3 columns with third column having fluid width, fixed position
I would like to do this simple layout:
3 columns with left and right position:fixed because when scroll down, left and right supposed to stay still
We know left column width = 200px
We know middle ...
5
votes
5answers
124 views
Change style of all occurrences of a string
I want my site title to display in a unique font from the rest of the content every time it appears in a heading, for branding reasons. For simplicity, let's pretend my special font is Courier and my ...
4
votes
5answers
1k views
background-image: url(“images/plaid.jpg”) no-repeat; wont show up
I can't seem to make my plaid.jpg the background on any of my pages, let alone all of them, I've tried selecting it by body, html, *, the specific id of "home". nothing works. The image is 300 x 421 ...
0
votes
2answers
220 views
How do I switch between 2 css stylesheets for use with jQuery-UI?
I'm quite new to jQuery and javascript in general and I've created a simple .html file in order to test using 2 different jQuery-ui stylesheets.
What I'm trying to achieve is the example dialog will ...
0
votes
1answer
85 views
jQuery to remove mobile stylesheet onclick and preserve state via cookie?
I'm having an issue trying to figure out how to add a 'view full site' link to a mobile version of a site. The mobile version is a limited version of the site and I'd like users to have the option of ...
0
votes
1answer
82 views
Disable Mobile Stylesheet in Order to Load Full Site
I am using media queries to load a mobile stylesheet. I want users to be able to click a link that will disable this stylesheet so they will we able to view the full site if they wish. What is the ...
0
votes
2answers
790 views
Dynamically change CSS rules in JavaScript or jQuery
I'm looking for a way to change the CSS rules of my stylesheet imported in the document. So I have an external stylesheet and some class and div attributes inside. I want to change one of the rules ...
1
vote
5answers
116 views
Link stylesheet to ID
I want to know if there is a solution to achieve something like this, where a stylesheet, only styles a part of the page.
<link href="/Content/stylesheet.css" for="OnlyApplyStylesWithinHere" ...
1
vote
1answer
302 views
Add stylesheet to iFrame in ASP.NET .MVC 3
Outline
I am trying to figure out how to inject or define stylesheet to iFrame in ASP.NET MVC3. I have gone through the existing threads on the above topic but none suits my case.I have one solution ...
1
vote
0answers
122 views
accessibility stylesheet switcher
Ok, what I need to do is,
toggle an accessibility stylesheet off and on
set a cookie for 10 days
check if the cookies is on an if it is add the stylesheet to the head.
I have it working with ...
0
votes
1answer
550 views
jquery dropdown selected text padding asp.net
Im using jquery dropdown selectbox from http://www.misfitgeek.com/2011/04/jquery-styled-dropdownlist/
its working fine except i dont know how to set padding-left: 20px; of selected text
selected ...
1
vote
2answers
589 views
Replace stylesheet with jQuery
The replacement is done in real time - user clicks something, the style changes:
$('link#mystyle').attr('disabled', 'disabled');
$('link#mystyle').remove();
if(new_style){
...
1
vote
1answer
1k views
jQuery and LESS, stylesheet update only works once
Attempting to update a custom CSS href, which works fine the first time, but on subsequent updates no changes occur to the page. I can see the href updating in Chrome debugger, so the event is ...
0
votes
2answers
539 views
Simple Stylesheet switcher using jQuery and a dropdown menu
At the moment i have a stylesheet switcher which uses javascript to to load a new stylesheet based on a selection made in a dropdown menu.
I would like to re-write the code to use jQuery instead of ...
4
votes
4answers
3k views
Image Glow on Mouse Hover?
I have seen this effect where when mouse is over an image, that image glows up. I am not talking about a border glow, I mean the colors in the image glow up. I found that there is a library called ...
1
vote
1answer
152 views
jQuery style switcher doesn't change width properly
I have a jQuery-based Style Switcher. Actually it's more like a "Width Switcher" since it only changes width.
I'm trying to modify it from here: ...
0
votes
1answer
268 views
Ajax-ed in content not getting stylesheet?
I have attached an screenshot of two pages side by side. In the left side the form element in the top right is loaded as part of the full page, and is fully styled with twitter Bootstrap's styles ...
0
votes
0answers
201 views
Conflicting scripts - tabs / galleria / cloud zoom [closed]
This page has a few javascript sheets from different places and I am now trying to add the Cloud Zoom.
It works in the first tab (Windows) but not on any other tabs on the page...
...
6
votes
4answers
4k views
Access CSS file contents via JavaScript
Is it possible to get the entire text content of a CSS file in a document? F.ex:
<link rel="stylesheet" id="css" href="/path/to/file.css">
<script>
var cssFile = ...
0
votes
1answer
464 views
jquery: create/read .css styles at runtime
I have an application where I'm using jQuery + maphilight
, and in addition to the highlighting of image map segments, I would like to highlight certain HTML elements dynamically, based on ...
0
votes
2answers
625 views
How to dynamically change the stylesheet of an HTML page within an iFrame of another page?
I have a web page that makes use of the jQuery UI themes. Within this page, there's an iFrame holding another HTML document that also makes use of the jQuery UI themes. Now, I have made my own theme ...
2
votes
0answers
286 views
enabling/disabling javascript for alternate style sheets
I have two style sheets for the page I'm working on. When the alternate style sheet is selected i need to run an extra function to get the effect I desire. So my question is, how can I write the ...
6
votes
3answers
578 views
How to target HTML element from a specific class of a BODY element
Using Drupal, the theme has a background color assigned to the <HTML> element. I'm creating a separate print CSS for ONE particular page, and wish to remove the background color ONLY for this ...
0
votes
5answers
145 views
New <style> element not working in IE
I currently have an HTML page that has a grey BODY background. Now I would like to overwrite this and change this to white using Javascript. I also would like to change some other elements' padding ...
9
votes
2answers
1k views
When is a stylesheet added to document.styleSheets
I'm trying to dynamically add a css stylesheet rule using javascript, something like example 2
here.
It works most of the time, but there seems to be a race condition that makes it fail sometimes in ...
1
vote
3answers
139 views
Prototyping style, colors, feel, CSS for a web application
Well we are running a pretty old fashioned looking web application. No fancy animations from jquery and the design is basically done with one color.
My goal is now to create a better looking ...
0
votes
1answer
255 views
Page Transitions Break When Not Using jQuery Mobile Stylesheet in Chrome / Safari
I've noticed when using jQuery Mobile if you don't use the jQuery Mobile stylesheet - you can't move from one page to another when using a webkit browser such as Chrome or Safari - Firefox and IE are ...
5
votes
3answers
8k views
How do I switch my CSS stylesheet using jQuery?
What I'm working on is simple.
You click on a button (id="themes") and it opens up a div (id="themedrop") that slides down and lists the themes. (I only have two at this point)
<button ...
1
vote
0answers
213 views
Why doesn't this JQuery stylesheet switcher store a cookie?
I have a downloaded stylesheet switcher that doesn't seem to work properly.
The switcher works in as much as the new stylesheet is loaded, however the cookie that it is meant to store and read never ...
1
vote
3answers
427 views
Make style inline using jQuery
Im experimenting with setting up a automatic way of converting clean stylesheet based designs to ugly inline styled design (for a newsletter editor).
Is it possible to get all the styles that applies ...
29
votes
9answers
5k views
How to fallback to local stylesheet (not script) if CDN fails
I am linking to the jQuery Mobile stylesheet on a CDN and would like to fall back to my local version of the stylesheet if the CDN fails. For scripts the solution is well known:
<!-- Load jQuery ...
3
votes
2answers
508 views
jQuery - IE ONLY css
Is it possible to use
var script = document.createElement('link');
script.href = 'theme/style/ie/manageleads.css';
script.rel = 'stylesheet';
script.type = 'text/css';
...
0
votes
2answers
210 views
How to effectively control what part of my web page gets printed when I'm using jQuery?
I am working on an HTML page (no server-side scripting) web page with JavaScript.
My page displays a cascading menu of articles to the user. When the user selects an article, the article is ...
3
votes
2answers
594 views
How to get the complete css information if css class is given form the used style sheets files
I want to find the complete css information of applied class in details by clicking on it. Like
<div class="class1 class2">This is my div</div>
Suppose I've written css in xyz.css file
...
0
votes
2answers
625 views
addScript() not work on Joomla System Plugin
I'm developing a joomla system plugin and I need to add some scripts in the header, I've the following code:
defined('_JEXEC') or die('Restricted access');
jimport('joomla.plugin.plugin');
class ...
4
votes
4answers
932 views
Create new (not change) stylesheets using jQuery
We've got a little tool that I built where you can edit a jQuery template in one field and JSON data in another and then hit a button to see the results immediately within the browser.
I really need ...
0
votes
1answer
188 views
How to add a cookie to save style selected by user Jquery
I have a styleswitcher added to my site and i would like to add a cookie that saves the last style selected by the user. I have this code, could someone guide me in the process?
Thanks for reading!
...


