“Agregar estilo a la hoja de estilo a través de jQuery” Código de respuesta

Cómo establecer el estilo CSS usando jQuery

$('#element').css('display', 'block'); /* Single style */
$('#element').css({'display': 'block', 'background-color' : '#2ECC40'}); /* Multiple style */ 
Cute Crayfish

Agregar estilo a la hoja de estilo a través de jQuery

var sheets = document.styleSheets;
$.each(sheets, (index) => {
	let url = sheets[index].href;
	if (url == "sheet url") {
       let thisSheet = sheets[index];
       //add css hover styling to stylesheet
       thisSheet.insertRule('selector {color: black !important;}');
     }
})
kristoff jenkins

Respuestas similares a “Agregar estilo a la hoja de estilo a través de jQuery”

Preguntas similares a “Agregar estilo a la hoja de estilo a través de jQuery”

Más respuestas relacionadas con “Agregar estilo a la hoja de estilo a través de jQuery” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código