Solved: ssh error no hostkey alg in Linux in RHEL 9 and in older versions.
By default, in RHEL 9, the older hosts can’t do the ssh directly. This is disabled by default. To enable this we need to update the crypto policies. I. Error...
By default, in RHEL 9, the older hosts can’t do the ssh directly. This is disabled by default. To enable this we need to update the crypto policies. I. Error...
We observed below warning messages on server: Jan 12 16:15:15 TEMM ufs: [ID 703900 kern.warning] WARNING: ufs_readdir: bad dir, inumber = 273728, fs = /var/tmp/tempdir1 Jan 12 16:15:15 TEMM ufs:...
Now suppose you want to select first p element on the page, then jQuery provides a very useful and powerful selector called ":first" that selects the first element. Its usage...
Now suppose you want to select last p element on the page, then jQuery provides a very useful and powerful selector ":last" that selects the last element. Its usage can...
Now suppose we are creating a list and want to apply different styles to odd and even items of the list then we can us the following syntax: $("li:even") The...
In the last topic, we have seen the use of ":even" to apply changes to even occurrences of any element, now lets look one another selector ":odd" to select odd...
Now i will show you some of the interesting jQuery selectors. Suppose you want to select 5th tr element(or the elements which are comes after 5th element, or before that)...
The first jQuery selector that we will look is * which is used to select all elements of the page. It can be used as follows: $("*") Now lets look...
We have seen the $ and how to write the jQuery code in our page. Now we will gradually go into the various functions and methods that are available in...
Here we will see how to access an element in jQuery with its id. Recall the code that we use in javascript to get an element with its id: document.getElementById("firstptag")...