Why does IE return medium
and FF return 0px
when there is no border in response to the following query?
.css("border-left-width")
I tested this in FF 3.6.3 and IE 6/7.
Why does IE return medium
and FF return 0px
when there is no border in response to the following query?
.css("border-left-width")
I tested this in FF 3.6.3 and IE 6/7.
When using the css()
method to retrieve stylesheet-applied styles, the behavior can vary between different browsers.
In Internet Explorer, the values are obtained from the IE-specific currentStyle
object, which is the exclusive way to access this information. The currentStyle
provides the 'specified style', reflecting exactly what was written in the stylesheet. If no overrides have been applied, the initial value of `border-width` defaults to 'medium', and that's the returned value.
On other web browsers, the css()
method utilizes the standard DOM Level 2 CSS function getComputedStyle()
. Unlike IE’s currentStyle
, this function provides the 'computed style', where relative units like 'medium' are resolved to actual lengths.
While 'medium' typically translates to a length of around 3px
, the absence of a visible border on the element causes it to default to border-style: none
, resulting in a computed border-width
of zero.
Although the 'specified style' and 'computed style' are generally similar enough for most purposes, they do have their distinctions. jQuery's css()
method operates under the assumption that they can be treated interchangeably, but in reality, there are subtle differences between them.
It seems that the current display is utilizing the default settings of the browsers. In cases where no specific border is defined, each browser will apply its own default. For example, Internet Explorer (IE) may display a medium border automatically once a border-style is added, while Firefox (FF) might not show any border as its default width is set to 0.
When creating a web design, it's important to always reset all elements to a default setting to ensure consistency across different browsers.
Integrate the YUI Reset package into your css to maintain fluidity of values across all browsers.
http://developer.yahoo.com/yui/reset/
By doing this, when you retrieve the value of a css element, they will all have the same starting point unless modified by another jQuery instance prior to your inquiry.
Struggling to create a responsive site that looks good on high dpi mobile devices? You're not alone. No matter how you adjust your h2 and p text sizes, they seem to be the same size when viewed in portrait mode on certain devices like the Galaxy S4. E ...
I'm on the lookout for a jQuery plugin or function that can assist in selecting the text of a specific column for easy copying to the clipboard. Imagine I have a 4x4 table and I drag my cursor from cell R1C2 to R4C2 - I want to be able to select only ...
I am trying to extract the data from a table row when I click on a specific div within that row HTML: <td class="ms-cellstyle ms-vb2">10</td> <td class="ms-cellstyle ms-vb2"> <div class="ms-chkmark-container"> <div ...
Could really use some assistance here! I created this website for a friend, but the color of the menu bar mysteriously disappears when I scroll to the right. Any suggestions or ideas on how to fix this issue would be greatly appreciated. The site in quest ...
I'm currently experimenting with implementing smooth page transitions using Barba. The following is my code snippet for adding some HTML when a new page is loaded. Barba.Dispatcher.on('newPageReady', function(currentStatus, oldStatus, conta ...
How can I create an accordion menu with only a few expandable options? I am looking to include the following items in my menu: Home, Support, Sales, Other The "Home" option is just a link without any sub-menu. Clicking on it should direct users to a spec ...
In my validation code, I have included different rules for phone number validation: $("#form").validate({ rules: { ... phone_number: { phoneUS: true, phonesUK: true, phoneNL: true } . ...
I'm looking to apply a transitional animation to an element's transform property without affecting the rotation. Here is the code snippet: <html> <head> <link rel="stylesheet" href="style.css"> <script src="script.js ...
I wanted to modify the video playback so that it would loop a specific portion of the video continuously while still allowing the full video to be played. For example, if the video is 30 seconds long and I want to play 5-second segment starting at 10 seco ...
I am currently exploring methods to include a border-bottom line for each row in a <textarea>, but so far I have only been able to achieve this on the very bottom row. Is there any way to make this happen? .input-borderless { width: 80%; bord ...
I am looking to display the count result from my count.php on my index page. I want to automatically count the number of rows in the user_code table and show the result on the index page every time it is visited. However, I am facing an issue where the AJ ...
I am currently designing a responsive carousel using Bootstrap-4 and slick.js. With the center-mode enabled, I noticed that it shows a partial next slide. I am interested in adding a gradient to this partial next-slide, but I am uncertain about how to acco ...
My goal is to change a selected button (buttons = .answerBtns) to an unselected button whenever the option in the OptionDropId drop down menu changes. Below is the jQuery code for drop down menus: $(document).ready(function () { var OptDrop = new Arr ...
Below is the html code snippet that I currently have: <form> <div class="form-group"> <label for="formControlRange">Example Range input</label> <input type="range" class="form-control-range" id="formControlRange"> ...
Below is a script I've implemented on an html page to toggle the visibility of divs based on user interaction. <script> $(document).ready(function(){ $("#solLink").click(function(){ $(".segSlide").hide(), $(".eduSlide").hide ...
Recently, I've been working on tweaking this code to make it Bootstrap 4 compatible and left aligned. However, I'm encountering two persistent issues that I can't seem to resolve: The right side keeps getting cut off even though I intended ...
One of my divs has a unique ID: id="1" Another div in a separate section has a different class: class="1". To trigger my function, I use the jQuery snippet below to simulate an onClick event on the ID div and perform an action on another div that shares ...
Have 2 inquiries about the table displayed below: Question 1: The height of the table is set to 500px, but I am puzzled by the fact that it seems like the content below, which is not part of the table, appears within the table due to the scroll bar exten ...
Despite its apparent simplicity, I'm struggling to identify the correct element. After receiving data from an .ajax() post, it looks like this: <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>302 Found&l ...
Looking for a way to extract the "step2" value from a given URL? Here's a JavaScript solution: const url = window.location.href; console.log(url); For example, let's consider this URL: http://www.myproject.com/wp/?edit_project=797#step2=projec ...