Ricky Barnes has Published 119 Articles

Set a green border to an element in Bootstrap to indicate success

Ricky Barnes

Ricky Barnes

Updated on 16-Jun-2020 08:44:11

221 Views

To set green border, use the border-success class in Bootstrap 4.The below element will have green border since we have set the class of the as border-success class −   Green border You can try to run the following code to set green border to an element indicating success ... Read More

hide.bs.popover Bootstrap event

Ricky Barnes

Ricky Barnes

Updated on 16-Jun-2020 08:34:34

184 Views

The hide.bs.popover event fires when the popover is about to be hidden.Add a click button to hide the popver using the popver(“hide”) method −$(".btn-default").click(function(){   $("[data-toggle='popover']").popover('hide'); });After clicking the button, fire the popover event and generate an alert using the hide.bs.popver event in Bootstrap −$("[data-toggle='popover']").on(hide.bs.popover', function(){   alert('Popover is about ... Read More

Bootstrap Event when the modal is fully hidden

Ricky Barnes

Ricky Barnes

Updated on 15-Jun-2020 19:32:43

758 Views

The hidden.bs.modal event in Bootstrap fires when the modal is completely hidden.Firstly, click on the hide button to hide the modal −$("#button1").click(function(){   $("#newModal").modal("hide"); }); After clicking the button, the hidden.bs.modal fires and generates an alert using the following script −$("#newModal").on('hidden.bs.modal', function () {   alert('The modal is completely hidden ... Read More

Add bottom rounded corners to an element in Bootstrap 4

Ricky Barnes

Ricky Barnes

Updated on 15-Jun-2020 19:30:29

201 Views

If you want to add rounded corners to an element, then use the rounded-bottom class.Use it on any element like −Above, we have set demo as well for class, for our div that is a rectangle.Here is our demo CSS class − .demo {   width: 110px;   height: ... Read More

Bootstrap .popover(options) method

Ricky Barnes

Ricky Barnes

Updated on 15-Jun-2020 19:27:03

733 Views

To activate the popover with an option, you need to use the .popver(options) method −Set the button for popover as −   Timings Set the popover title, header, etc. All of these comes under popover options −$(document).ready(function(){   $('.btn-default').popover({title: "Event Timings", content: "3PM - 6PM", placement: "right"}); });Let us see ... Read More

Bootstrap 4 .flex-row-reverse class

Ricky Barnes

Ricky Barnes

Updated on 15-Jun-2020 19:21:47

1K+ Views

Use the flex-row-reverse class in Bootstrap to reverse the order of flex items. It also aligns the flex items to the right.Let us see the difference between the default arrangement of flex items and result of row-reverse class −For reversing the order of rows, we have used the flex-row-reverse class ... Read More

Stretch gathered items on different screens in Bootstrap 4

Ricky Barnes

Ricky Barnes

Updated on 15-Jun-2020 18:37:35

117 Views

Use the .align-content-*-stretch in Bootstrap 4 to stretch gathered items on different screens.To stretch items on different screens −Stretch items on Small Screen   Work 1   Work 2   Work 3   Work 4   Work 5   Work 6 Stretch items on Medium Screen   Work 1   ... Read More

Surrogate Key in RDBMS

Ricky Barnes

Ricky Barnes

Updated on 15-Jun-2020 13:48:52

1K+ Views

A Surrogate Key’s only purpose is to be a unique identifier in a database, for example, incremental key, GUID, etc. It hasSurrogate Key has no actual meaning and is used to represent existence. It has an existence only for data analysis.ExampleKeyProductIDPrice505_921987200698_561256170304_571898250458_661666110Above, the surrogate key is Key in the table.Other ... Read More

Super Key in RDBMS

Ricky Barnes

Ricky Barnes

Updated on 15-Jun-2020 13:46:26

3K+ Views

Super Key is an attribute (or a set of attributes) that uniquely identify a tuple i.e. an entity in entity set.It is a superset of Candidate Key, since Candidate Keys are selected from super key.ExampleLet us see an example −Student_IDStudent_EnrollStudent_NameStudent_EmailS024545Daveddd@gmail.comS344541Jackjjj@gmail.comS224555Markmmm@gmail.comThe following are the super keys for the above table −{Student_ID}{Student_Enroll}{Student_Email}{Student_ID, ... Read More

How to trim a string using $.trim() in jQuery?

Ricky Barnes

Ricky Barnes

Updated on 15-Jun-2020 13:44:33

3K+ Views

To trim a string in jQuery, use the trim() method. It removes the spaces from starting and end of the string.The sample string I am using has spaces −var myStr = "  Hello World    ";Use the trim() method,  jQuery.trim(myStr);The following is an example to trim a string in jQuery ... Read More

Previous 1 ... 5 6 7 8 9 ... 12 Next
Advertisements