adal's blog

Semantic web development bangalore

  Good news, We are the first Semantic Web Developers in Bangalore. Currently developing a site using HTML 5, RDF, Drupal which emits semantic web. Semantic web is some time call as web 3.0 (giant globe semantic). We are Only developers developing websites using Open Graph Protocol, Micro format, Schema.org web standards.

  I plan to write more about RDF, Semantic Web, Open Graph Protocols, and how going to affect the feature search results. reply : adal@quardz.com

Drupal 7 Galleriffic Views

Views

Real Estate Website using Drupal CCK & Views

Content Type

Website HTML Map Create by XRay Firefox Addons

As an SEO you may be taking the full advantage of FireFox’s built-in “View source” option. I used it multiple times for any type of webpage You can create it so easy. A few ways to make viewing the source code of any page more usable.
X-Ray

X-Ray is a great FireFox addon that makes it much easier to compare the source code with an actual website interface design. In fact, it inserts coding right within the page, so you can clearly see which code is used for which web page element.

Website Redesign

1. Website Designing Architecture According to SEO

Search engines look explicitly at how all your pages are linked together in order to determine their place within the site. Pages that are linked from every other page will be given more weight than those that are only linked from a few others. This is all considered a form of internal link popularity, or in Google language, internal Page Rank. Here are only one search engine which is providing a ranking of a site by there own tools.

Comparison of Drupal and Joomla

Like many I have recently been trying to work out whether to use Drupal or Joomla for my own business, and being a small company I didn't want to spend time using the wrong tools. I am also quite new to CMS's so I don't have any bias (yet). I searched the net and found, among many other good reviews, Webology's survey. Then I did some additional analysis of their work and put an article on my own personal blog to contribute to the discussion and help others in the same situation as myself.

Best Practices for HTML page Design


Put HTML tags in correct

  1. Don't put tags as incomplete.
  2. Style sheet link tags in head tags.
  3. Script tags as in bottom of the HTML document.
  4. tag text as in smaller case.

jQuery equivalent for document.getElementById("") in javascript


When i am trying to write the client validation i used document.getElementById("") to get the value of the control and then validate that and return the result. So, when i move on to jQuery i try to figured out what would be the equivalent code for that i tried

var _Text = $("#controlid").value; //to get the content

but i didn't get the content. So after i browsed in the google and found the $("") ,selector, in jQuery the array so we need to use the array bracket or get method to get the content of the control.