In this article, we will create simple vertical navigation bar for websites.
Suppose our website having following menus :
• HOME• ANGULAR JS
• DOT NET
• HTML
• HISTORY
• ADVERTISE
• ABOUT US
• CONTACT
In this article, we will create simple vertical navigation bar for websites.
Suppose our website having following menus :
• HOMESearch Engine Optimization (SEO) is the very important thing to get more traffic towards our websites or blogs. SEO is one of the parts of SEM which stands for Search Engine Marketing. If you have a website or if you want to be a blogger or earn money through the Internet then you need to know about SEO.
Here we are giving some useful SEO terms which leads to get more traffic to websites or blogs. Many search engines uses these SEO terms to indexing websites and creating crawl. Some of you may already know these SEO terms. These terms also used in Digital Marketing.
Actually, I was faced this problem while adding drop down menu bar in blogger. I was googled but I was not found any solution. So that I was tried myself to edit that template and after working on that I was at the stage of success. It seems that, this problem happen only using a template made through Blogger Template Designer.
Suppose you have any horizontal menu bar which also having some sub-menus in. A menu is handy for those who do not require complex menus or prefer not to use one that requires scripts and/or too many images, also the installation and customization is quite simple, and to top it off is quite functional. This menu bar is already added by you in blogger. But after visiting website, it doesn’t showing any sub-menu even after hovered.
Before going on our main topic we have to discuss about one of the Dot Net feature i.e. Microsoft’s Web Optimization Framework. So, what is Web Optimization Framework and how to use this framework in Asp.net web form application? Microsoft’s (ASP.NET) Web Optimization Framework introduces a way to bundle and optimize CSS and JavaScript files.
If anyone wants to install Microsoft ASP.NET Web Optimization Framework, run the following command in the Package Manager Console of Visual Studio 2012.
Tooltip is used to describe information about anything which may on HTML pages. It is possible to create tooltip to show information about fields so that user will not be confused about what and how to enter correct data in fields.
Here is the general code to create tooltip design.
In this tutorial, we will discuss about one of the type of HTML5 elements i.e Inline elements. As in one of the article, we already have posted information about different types of HTML4 elements and difference between them. You can read that article by clicking on Read More...
In general, HTML5 elements can be divided into two categories :
1. Block Level ElementsIn this tutorial, we will discuss about one of the type of HTML5 elements i.e block level elements in HTML5. As in one of the article, we already have posted information about different types of HTML4 elements and difference between them. You can read that article by clicking on Read More...
In general, HTML5 elements can be divided into two categories :
1. Block Level ElementsA Library and a Framework are a set of classes, modules and/or code (depending on the programming language) that can be used in your applications.
Suppose you have to maintain log or debugging info in your applications, draw charts, create an specific file formats like .html, .pdf, .xls, connect to a data base, create applications using Design Patterns or simply create some/complete application etc.
These types of problems can be solved using Framework or a Library.
Sometimes we need to create html/text file using content from text box and download that file using JavaScript. This post explains one of the best solutions on that using HTML5.
Following code will not used for IE as we are using download attribute of anchor tag which is not supported in IE browsers. This code will be useful to work on Google Chrome, Mozilla Firefox, Safari.
Here is the code with line by line full description of each line of code.
The Document Object Model (DOM) is an Application Programming Interface (API) that gives programmers and developers a way of accessing and manipulating the elements within HTML and XML documents.
With the Document Object Model, programmers can create and build documents, navigate their structure and perform various manipulation operations such that add, modify or delete elements and content. Anything found in an HTML or XML document can be accessed, changed, deleted or added using the Document Object Model. In simple sentence "The way that document content is accessed and modified is called the Document Object Model or DOM".
Browserify is a development tool that use node.js-style modules means CommonJS module system for frontend JavaScript development. We write our modules in separate files, exporting external methods and properties using the module.exports and exportsvariables. We can even require other modules using the require function.
If we omit the relative path it'll resolve to the module in the node_modules directory.
Getting started with the browserify command-line tool requires node.js and npm (Node Package Manager) installed.
Many times we need to use anchor tag in html coding. For anchor tag we assign href attribute with URL. So that whenever user click on that it will redirect to URL given as a value of href attribute. But how to prevent this default functionality?
We can prevent this default behavior of anchor tag using JavaScript or jQuery.
Simply, if we assign # to the href then after clicking on it will not redirect to any URL but it will jump to top of screen.
Sometimes it is necessary to know current URL, so that we will perform different operations on that or use that URL for various purposes. In this post, you will learn to get current URL from browser at client side using JavaScript and jQuery.
The window.location read-only property returns a Location object with information about the current location of the document.
localStorage, sessionStorage, session and cookie all these storage mechanisms will be specific to an individual browser on an individual computer/device. Any requirement to store data on an ongoing basis across sessions will need to involve your application server side.
localStorage, sessionStorage and cookies are all client storage solutions while Session data is held on the server where it remains under your direct control.
Many of us solving issues related iphones, This is one of the issue that found in my practises. I want to show iframe on a page using following coding, it obiviously work on all browsers and mobiles except iphone browsers. It is very good stuff from I am wondering in my practises.
Issue : On Iphone, after refreshing page I have reproduced this issue. Height of an iframe increases automatically after every refreshment of page.
It will be solved in some cases after removing style of height of div id="mainDvContainer" from test.html, but in some cases you may loss your original design.