How to Delete Browsing History From Browser ?


As you browse the web, browsers can remember lots of information such as the website you have visited, files you have downloaded and other more, such information are called browsing history. Most of the web browsers stores information on their browsing history, if you are using public computer or a shared computer and want to delete browsing history from computer, can do it with different methods. Here I have explained different methods for deleting browsing history from different browsers
.

Deleting Browsing History From Control Panel



1. Go to control panel from start button. If you are viewed by category option, Click on Network and Internet option. 

Deleting Browsing History From Control Panel




















2. On the internet option, click on 'Delete Browsing History and Cookies'.


Deleting Browsing History From Control Panel

OR,  On the view by icon option, click on 'Internet Options'. On the browsing history of general tab, click on Delete button.

Deleting Browsing History From Control Panel

Check mark on the options for which you want to delete and click on delete button.



Deleting Browsing History From Chrome Browser




Deleting Browsing History From Chrome Browser
1. Click on 'Customize and control Google Chrome' icon on the top right corner and click on History option.

2. Click on 'Clear browsing data...' button.

3. On the new window check the options and click on  'Clear browsing data...'  button.

Deleting Browsing History From Chrome Browser



















Deleting Browsing History From Mozilla Firefox



1. Click on Firefox button on top left corner, mouse over on 'History' option and click on 'Clear recent history'.

Deleting Browsing History From Mozilla Firefox

2. Select the time range to clear and click on 'Clear Now' button.

Deleting Browsing History From Mozilla Firefox


Deleting Browsing History From Internet Explorer



1. On the Tools options, click on Internet Options. 

Deleting Browsing History From Internet Explorer

2. On the browsing history of general tab, click on Delete button. On the new window, check mark on the options for which you want to delete and click on delete button as given above.

Deleting Browsing History From Internet Explorer



Related Posts


Best Online Backlink Checker Tools List


Best Online Back-link Checker Tools ListI have already posted the most effective tips for your link building success on my previous post, you can achieve best backlinks for your websites only by applying most effective and successful link building strategies. While gaining quality backlinks for your website, you have to find out and analyze the links you have gained. By using these best online backlink checker tools which I have listed here, you can discover your or your competitors websites backlink from the reports or information generated by them.  



List of Best Online Backlink Checker Tools




MajesticSEO.com# 1) MajesticSEO.com: It is one of the best online backlink checker tool and provides free as well as paid service to analyze your website. It provides the basic URL information such as number of external backlinks, referring domains, referring IPs etc. History chart also shows external backlinks and referring domains over the last 90 days. You can get detailed report about backlinks and anchor text from the respective tabs.


OpenSiteExplorer.org
# 2) OpenSiteExplorer.org: Open Site Explorer is another tool to discover links linking to your website provided by MOZ.com. Using this tool, you can compare up to 5 sites to compare to your competitor sites. You can explore inbound links, Top pages, Anchor text and other more features. To overcome the daily limits you have to register and log in using MOZ account.



Ahrefs.com# 3) Ahrefs.com: It provides more detailed report in the free service also provides paid service for more features. On the main window, it provides URL Rank, Ahrefs Domain Rank, Total number of backlinks and referring domains. It also provides total referring pages, total referring domains and new and lost backlinks on chart.


RankSignals.com
# 4) RankSignals.com: It is free to use backlink checker tool to discover SEO links and traffic sources of your website and your competitors. It provides the list of title and URL of linking page, link anchor text and its page rank.


# 5) Backlinkwatch.com: It also a free tool to get complete detailed information about quality and quantity of backlinks pointing to your website. You can find anchor text, page rank, total outbound links on the page along with no-follow tag for no-follow links.
Backlinkwatch.com


# 6) SmallSeoTools.com: Backlink checker tool of Small SEO Tools provides total number of backlinks, page URL that contain your website's links, website PR, Page PR, Anchor text and flag used in link with 10 results at a time.
SmallSeoTools.com


# 7) MonitorBacklinks.com: It also provides free as well as paid service for advanced options. You can find out total backlinks, unique domain, unique IPs, number of no-follow links, .edu and .gov links. If your registered for this site, can monitor up to 2 domains and manage up to 500 links.

MonitorBacklinks.com


Digibacklink.com# 8) Digibacklink.com: It is a free to use website backlink checker tool, which provides total number of backlinks along with link flag, target, page rank and Moz Rank. You can see more back-links up to 1000, if connected using Facebook.



# 9) AnalyzeBacklinks.com: By using this backlink checker tool, you can find out linked URLs, Anchor text, total links, outbound links, title of the page and text found on the link.
AnalyzeBacklinks.com

# 10) LinkDiagnosis.com: It is a free tool to check backlinks for your website. It uses SEO Moz engine to analyze and generate reports.




Related Posts




How to Display Date Format in JavaScript?


How to Display Date Format in JavaScript?You can display different date format using Date object in JavaScript for your webpage or web application.The different date format may be year only (YYYY), year and month (YYYY-MM), complete date (YYYY-MM-DD), complete day with day name (YYYY-MM-DD DayName) and date with different time format. Different methods are available in date object to manipulate date in JavaScript. The Date object automatically hold the current date and time as its initial value. You can extract Year, Month, Day along with Hours, Minutes and Seconds from it. Here I have given very simple codes for printing different date formats, you can use respective codes for displaying that format of date on your web page.



JavaScript Date Format YYYY (year only)


<script type="text/javascript">
function displayDate(){
var now = new Date();
var year=now.getFullYear();
date.innerHTML=year
}
window.onload=displayDate;
</script>
<div id="date"></div>

It prints Year only. i.e. 2014


JavaScript Date Format YYYY-MM or MM-YYYY (year and month) 


<script type="text/javascript">
function displayDate(){
var now = new Date();
var month=now.getMonth();
var monthName=new Array(12)
monthName[0]="January";
monthName[1]="February";
monthName[2]="March";
monthName[3]="April";
monthName[4]="May";
monthName[5]="June";
monthName[6]="July";
monthName[7]="August";
monthName[8]="September";
monthName[9]="October";
monthName[10]="November";
monthName[11]="December";
var year=now.getFullYear(); 
date.innerHTML=monthName[month]+", "+year
}
window.onload=displayDate;
</script>
<div id="date"></div>

It prints Year and Month. i.e. February, 2014

JavaScript Date Format YYYY-MM-DD (complete date)


<script type="text/javascript">
function displayDate(){
var now = new Date();
var today=now.getDate();
var month=now.getMonth();
var monthName=new Array(12)
monthName[0]="January";
monthName[1]="February";
monthName[2]="March";
monthName[3]="April";
monthName[4]="May";
monthName[5]="June";
monthName[6]="July";
monthName[7]="August";
monthName[8]="September";
monthName[9]="October";
monthName[10]="November";
monthName[11]="December";
var year=now.getFullYear();
var day=now.getDay();
date.innerHTML=monthName[month]+today+ ", "+year
}
window.onload=displayDate;
</script>
<div id="date"></div>

It prints Year, Month and Day. i.e. February21, 2014


JavaScript Date Format YYYY-MM-DD-DayName (date with day name)


<script type="text/javascript">
function displayDate(){
var now = new Date();
var today=now.getDate();
var month=now.getMonth();
var monthName=new Array(12)
monthName[0]="January";
monthName[1]="February";
monthName[2]="March";
monthName[3]="April";
monthName[4]="May";
monthName[5]="June";
monthName[6]="July";
monthName[7]="August";
monthName[8]="September";
monthName[9]="October";
monthName[10]="November";
monthName[11]="December";
var year=now.getFullYear();
var day=now.getDay();
var dayName=new Array(7)
dayName[0]="Sunday";
dayName[1]="MOnday";
dayName[2]="Tuesday";
dayName[3]="Wednesday";
dayName[4]="Thrusday";
dayName[5]="Friday";
dayName[6]="Saturday";
date.innerHTML=monthName[month]+today+ ", "+year+" "+dayName[day]
}
window.onload=displayDate;
</script>
<div id="date"></div>

It prints Year, Month and Day with Day Name. i.e. February21, 2014 Friday

JavaScript Date Format YYYY-MM-DD hh:mm (date with hour and minute)


<script type="text/javascript">
function displayDate(){

var now = new Date();
var today=now.getDate();
var month=now.getMonth();
var h=now.getHours()
var m=now.getMinutes()
var s=now.getSeconds()

m=checkTime(m)
s=checkTime(s)

var monthName=new Array(12)
monthName[0]="January";
monthName[1]="February";
monthName[2]="March";
monthName[3]="April";
monthName[4]="May";
monthName[5]="June";
monthName[6]="July";
monthName[7]="August";
monthName[8]="September";
monthName[9]="October";
monthName[10]="November";
monthName[11]="December";

var year=now.getFullYear();
var day=now.getDay();

var dayName=new Array(7)
dayName[0]="Sunday";
dayName[1]="MOnday";
dayName[2]="Tuesday";
dayName[3]="Wednesday";
dayName[4]="Thrusday";
dayName[5]="Friday";
dayName[6]="Saturday";

date.innerHTML=monthName[month]+today+ ", "+year+" "+h+":"+m
}
function checkTime(i)
{
if (i<10)
{ i="0" + i}
return i
}
window.onload=displayDate;
</script>
<div id="date"></div>

It prints Year, Month and Day with Hour and Minute. i.e. February21, 2014 9:18

To include other time formats refer to the previous post: How to Create a Digital Clock in JavaScript?


Related Posts


What are the Different Ways to Redirect Page in JavaScript?


Different Ways to Redirect Page in JavaScript
When you click on a link or type the URL to go to one page but sometimes it may go to another page internally due to page redirection on that page. There may be several reasons to redirect to a new page from the original page. The reasons you may want redirection are to redirect from your old domain to new domain, to redirect visitors from mobile device to the mobile site, to redirect to the visitors from different countries to their respective country level domain URL and many more.You can use temporary or permanent redirection methods to redirect from on page to another page. The permanent redirection is server side redirection and temporary redirection in client side redirection.

Using JavaScript you can do client side redirection, however it is not preferred method for page redirection, a search engine may ignore JavaScript redirection. Do not use this feature to spam the search engine, if such you may band from search engine. Here are given different redirection methods and their purpose to redirect from one page to another page in JavaScript, you may use any one of them according to your circumstance.


Simple JavaScript Redirection to Another Page


1. Using window.location method: Use these scripts to the head section of your page.

<script type="text/javascript">
window.location="http://www.newpage.com";
</script>

2. Using window.location.href method: Use these scripts to the head section of your page.

<script type="text/javascript">
window.location.href="http://www.newpage.com";
</script>

3. Using window.location.assign method: Use these scripts to the head section of your page.

<script type="text/javascript">
window.location.assign="http://www.newpage.com";
</script>

4. Using window.location.replace method: Use these scripts to the head section of your page.

<script type="text/javascript">
window.location.replace="http://www.newpage.com";
</script>


JavaScript Redirect to Another Page After 'x' Seconds


1. Using onLoad method: Use these scripts in body tag to redirect to another page after '5' seconds.

<body onLoad="setTimeout(location.href='http://www.newpage.com', '5000')">


2. Using Redirect function: Use these scripts in the head section to redirect to another page after '5' seconds with redirection message.

<script type="text/javascript">
 
function Redirect()
{
 window.location="http://www.newpage.com";
}
document.write("You will be redirected to a new page in 5 seconds");
setTimeout('Redirect()', 5000);
 
</script>
 
 


JavaScript Redirect to Another Page On Load



1. Using onLoad method: Use these scripts in body tag to redirect to another page on load.

<body onLoad="setTimeout(location.href='http://www.newpage.com', '0')">


2. Using a function: Use these scripts in the head section to redirect to another page on load.

<script type="text/javascript">
 
function Redirect()
{
 window.location="http://www.newpage.com";
}
setTimeout('Redirect()', 0);
 
</script>


JavaScript Redirect to Another Page On Click


1. Using a function: Use these scripts in the head and body section to redirect to another page on button click.

<head>
<script>
function myButton()
{
window.location="http://www.siteforinfotech.com";
}
</script>
</head>
<body>
<button onclick="myButton()">Click me</button>
</body>


JavaScript Redirect to Another Page Passing Variables


1. Using a function: Use these scripts in the body section to redirect to another page on button click with passing the value of text box.

<body>
<form action="/search">
Enter your search text: <input type="text" id="searchtext" name="q">
&nbsp;<input onclick="myFunction()" type="submit" value="Search It" /></form>
<script>
function myFunction()
{
var search = document.getElementById("searchtext").value;
window.location = '/search?q='+search;
}
</script>
</body>

Enter your search text:  



Related Posts


How to Create Pop Up Menus in Oracle Forms ?


Pop Up menus are those, which are displayed on the screen when we right click on it. Pop Up menu makes any application easier to use it. In Oracle Forms also we can make pop up menus to add different menu items for the operating form.  The items for operations such as inserting, saving, deleting and navigating records can be included in the pop up menu. Here I have written some steps for creating pop up menus in Oracle Forms along with their screenshots.

Pop Up Menus in Oracle Forms

Steps for Creating Pop Up Menus 



1. At first create a form as the post "How to Create Oracle Forms by Using Wizard ?"  .  Click on Pop Up option in object navigator, Click on plus + sign and rename the menu name. Right click on menu name and click on Menu Editor. Add the new items by clicking on plus down and plus right buttons as given below.



Menu Editor for Pop Up Menus in Oracle Forms


2. Add the items as given in the image below.  


Menu Editor for Pop Up Menus in Oracle Forms



3. Right click on menu items on the object navigator and click on PL/SQL Editor option. Write PL/SQL queries On the PL/SQL Editor window as given below. 

PL/SQL Editor for Pop Up Menus in Oracle Forms

 4. Add the following PL/SQL queries in the PL/SQL editor for respected items.
  • PREVIOUS:           previous_record;
  • NEXT:                  next_record;
  • FIRST:                  first_record;
  • LAST:                   last_record;
  • INSERT:               create_query;
  • CONDITION:        enter_query;
  • SAVE:                  commit;
  • DELETE:              delete_record;
  • EXIT:                  exit_form;

5. For adding Menu Item Type as Separator, go to Property Palette by right clicking on menu item and clicking on Property Palette option. Select Separator on Menu Item Type property under Functional property.


Property Palette for Pop Up Menus in Oracle Forms

6. For assigning Pop Up menu on the form, right click on canvas and click on Property Palette option. From Popup Menu option under Functional property select the Popup Menu name as in the image below.


Property Palette for Pop Up Menus in Oracle Forms

7. Save, Compile and Run the form. You can view the Popup menu while right clicking on form area.




Related Posts: