Get Css Value Using Jquery Code Example


Example 1: jquery css


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

Example 2: styling element using jquery


Syntax:
$(selector).css(property-name:property-value);

Example:
$('.bodytext').css('color':'red');

Comments

Popular posts from this blog

530 Valid Hostname Is Expected When Setting Up IIS 10 For Multiple Sites

C Perror Example

Converting A String To Int In Groovy