How to get the previous URL by using javascript. For the below code, I store the previous pages URL into a variable and console them. I store the history pages […]
Put Multiple Properties of CSS in jQuery
Put Multiple Properties of CSS in jQuery jQuery(‘container’).children().css({‘color’:’pink’, ‘background-color’:’blue’, ‘font-family’:’arial’, ‘font-size’:’20px’});
Get selected uploaded file name in input file by jQuery without fake path
Uploaded file value comes with a fake path, how to get filename without a fake path. In this code, how to get filename without full path, only use the file […]
Change HTML Element Text by JQuery Code
Change HTML Element Text by JQuery Code <script type=”text/javascript”> jQuery(document).ready(function(){ var breadCrumbText = jQuery(‘.breadcrumb-trail’).html(); var changeBreadCrumb = breadCrumbText.replace(‘Home’,’Blog’); jQuery(‘.breadcrumb-trail’).html(changeBreadCrumb); }); </script>