Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 

Adding Form Elements dynamically in Javascript

You can use JavaScript to add elements like textbox, button, radio button in a html form. createElement() method is used to create html elements at runtime. Here is the example: HTML: <form> <h2>Dynamically add element in fo...

Bootstrap Modal

A modal is a child window that is placed over its parent window. Normally, the reason for existing is to show content from a different source that can have some communication without leaving the parent window. Child windows can give data, co...

CSS content:\00a0

Hey there! Today, while using Bootstrap breadcrumb, I came across something which I never did see before. The syntax is given as under : content:"\00a0";   I was using Bootstrap breadcrumb and I found the above syntax there. Th...

Difference between AngularJS Expression and JavaScript Expression

These are the following differences between Angular JS expression and JavaScript expression :    Used in HTML : Angular expressions can be used inside HTML while JavaScript expressions do not.  Filters : Angular expressi...

DataTables: Table plug-in for jQuery

DataTables is a jQuery plug-in designed for creating flexible HTML tables. It has following features: * It provides Instant search, Pagination and multi-column ordering * It has Supports for any data source like DOM, Javascript, Ajax and s...

Migrate Windows Live Mail to Outlook with Attachments

  In this post, we know about how to Migrate Windows Live Mail to Outlook . But before start the process, you need some knowledge about both email application i.e. Windows Live Mail and Microsoft Outlook   In present e...

5 Tech Trends That Would Supercharge Education

  Technological advancements are taking over the traditional ways of doing things and learning as well. There is a wide scope for technology to be used in field of education. Experts are of opinion that technology can help students le...

Calculate distance between two addresses / points / locations using Google map API.

Hello Readers , In this blog we are calculating distance between two address / points / locations using Google Maps V3 API. First we have one small HTML having source and destination fields after clicking the submit function "GetRoute&...

Pagination stored procedure in SQL Server

In this blog we illustrate how to get the pagination data from SQL server stored procedure. To create a such type of a stored procedure, we need to send a minimum three parameters(startRowIndex, pageSize, totalCount).     1. ...

How to check device network in Phonegap

Cordova provides cordova-plugin-network-information that checks the cellular and wifi connection of the device and also it can check the internet connection. Installation: To install this plugin run the following command   cordov...

Scopes in Angular JS

Scope is a  JavaScript object that connects Controller and View. Scope contains information of model, its properties and methods.   Characteristics of scope: Scope acts as a connection between Controller and View and availab...

Best IDE for Angular 2

In this article, we will go through the different code editors and IDE’s which are useful in angular2.   Visual Studio code:  Visual Studio code is developed by Microsoft and it is relatively new, microsoft has developed the...

Blurry Text

Hi all. We try all sorts of shadow and color properties to make our text look unique and richer visually. In this blog post, I will tell you how to create a simple blurry text using two of the simplest properties, text-shadow and color. ...

How to disable zoom via mouse scroll on embedded Google Maps?

Hello, Readers! I worked on a PSD recently and it required me to embed a map into it which was done successfully. I embedded a Google Map using iFrames. But in doing so, I came across a problem. The problem was: When we/user scroll the page...

Triggers in the SQL server

A trigger is a unique store procedure that is executes to give a response to particular action on the table of a database using  the following SQL statements: 1. Data Manipulation Language (DML) SQL Statements (like INSERT, UPDATE or DE...

6 Web, Mobile Apps for Creating the Interactive CV

  The days of static resumes are quickly coming to an end. It’s about time. After all, everything else has gained an interactive element, so why shouldn’t we help human resource navigate our resumes more easily and more qu...

AngularJS directives

Directives in AngularJS are, that get run when DOM is complied by the compiler. Directives are used to extend HTML and DOM element's behaviour and create reusable and testable  code.These are attributes that starts with ng- prefix. &n...

How To Use JavaScript To Copy Text From One Field To Another

When you create a web form for web page of any website, users need to fill the details in the fields like name, address, phone number etc. sometimes when filling the details there may be some fields which you need to fill twice. Instead of having...

Convert html to PDF with dompdf using PHP.

Hello Readers ,  Below is the explanation of how we can create any HTML into PDF and then further send it to emails as an attachment etc. Install the Dompdf library from github https://github.com/dompdf/dompdf/releases and then put it ...

ASP.NET MVC Areas with example

ASP.NET MVC Areas with example   The organization of models, views and controllers into separate functional areas of the application is referred to as MVC areas. The concept of MVC areas was introduced in MVC2. Whenever MVC area i...

Braintree payment refund process of original transaction

Hello Friends, Today, In this blog you will learn payment refund of the original transaction. In general, process, if the merchant wants to refund payment of any transaction so he can refund full payment or partial payment using transaction ID...

How to send emails in sendgrid in php.

Hello Readers , For sending emails in sendgrid initially we need two things. Sendgrid API key : To configure API keys, visit https://sendgrid.com/beta/settings/api_key or you may create sendgrid account to have the API keys. Sendgrid L...

Dependency Property

A Dependency property is a property which allow the analytical code to modify the properties of an object to minimize a data necessities by giving a powerful reporting system about to change of a data in a particular way. In dot net generall...

Closures in Javascript

Closures are one of the fundamental concepts of javascript. Closure are the functions that refer to free or independent variables. We can define free variable as the variables which are not declared locally and also not passed to the function as ...

View Engine in ASP.NET MVC and Difference between Web form / ASPX and Razor View Engine in ASP.NET MVC?

View Engine Rendering of the view into HTML form to the browser is done by view engine in  ASP.NET MVC. ASP.NET MVC supports various types of view engines but commonly used view engines are :-   Web form / ASPX view engin...

Learn how to create a slide using pure CSS

Hii,  In this blog, I am going to  share an example in which i have created a pure CSS Slider using few CSS properties like transitions, transforms,input:checked functionality and animations.  Slider is the most ...

Generate xml file in php

If we need to export our application data in XML format then we can generate an XML file with the use of PHP. Let's see how can we do it. first of all, in our PHP file create a class that initializes the parameters.   class...

Debugging local databases and Preferences.

When you need to debug database  and shared prefrences in an android application, it is difficult to debug it. Android Debug makes it easy to debug the databases Add this to app’s build.gradle- debugCompi...

Filters in ASP.NET MVC

Filters are used where we want to execute code before Action Call and after Action call. Filters are custom classes that provide pre-action and post-action behaviour to controller actions.   Types of Filters:   ASP.NET MVC p...

Html submission by AllowHtml attribute in MVC4

Html submission by AllowHtml attribute in MVC4   ASP.NET MVC  does not allow HTML submission by default due to Cross Site Scripting attack in application. AllowHtml Attribute can be used for submitting the form with HTML...

Bootstrap Grid System

A grid is an arrangement which is separated into div sections. This is an extremely helpful strategy to oversee HTML format and clients can make easily. To make organised grids and organized content , Bootstrap introduces responsive grid system w...

scrollTop() method in jQuery

scrollTop() method: It is used to get the vertical scrollbar position for the selected html elements and once we get the scrollbar position we can use it in our jquery. Syntax: $(selector).scrollTop() // returns vertical scrollbar pos...

Html submission by ValidateInput attribute in MVC4

Html submission by ValidateInput attribute in MVC4   There are scenarios where the requirement is to send HTML values from view to controller. By default HTML submission is not allowed in ASP.NET MVC due to Cross Site Scripting attack&...

How to add class (active) on specific li on user click with jQuery

Mostly every website contains a navigation menu so it's constantly great to make it so the guests or client on the website knows on which page or part of the website he is on. This can be proficient by including a "dynamic class" or...

Transaction in SQL

A transaction is used to check whether all SQL statements get executed successfully or not. A Single transaction starts with a particular statement and ends after the completion of all the SQL statements executed successfully. If all SQL statemen...

How to update/refresh device gallery after adding new images

In some of the devices while uploading/adding new image into media are not shown to the custom gallery view. However this does not seem to update until the device reboots. To update your custom gallery with new images, below few lines of code wil...

Http request to search Image using Vuforia Rest api

In our previous blog we know that how to generate signature to perform valid api request. Now we ll see how to get target image id from vuforia database. We know that how to find the path of an image after taking it from camera or gallery so w...

How to set MD5 and SHA1 encryption for image recognition using Vuforia rest Api ?

In our previous tutorial we learn how to configure vuforia for Cloud recognition, in this tutorial we will learn about how to set encryption technique while hitting rest apis of Vuforia and in our next tutorial we will share the basic http reques...

7 Useful Social Media Marketing (SMM) Tips For Business

Social Media Marketing (SMM) tends to become more complicated with every new social media website. Some people are so frustrated at the situation that they have started hiring professionals for social media marketing, even though ...

How to scan image from cloud database using Vuforia ?

Using Vuforia we can scan any label and image from cloud database of Vuforia. You need to create free developer account there and then you can create your own application. Then you can create your database in develop tab where you  hav...

Integration Braintree payment getway with php

Hello friends, In this blog we will learn, How to made payment with Braintree getway. First go throw https://github.com/braintree/braintree_php and download the library after you will need to register with Braintree and get merchant ID and Pub...

Attribute Routing in ASP.NET MVC 5

Attribute Routing in ASP.NET MVC 5   Matching URI to an action in ASP.NET MVC is routing. ASP.NET MVC supports convention routing which is allowing the developer to specify formats which are then used to parse incoming URLs and th...

Angular JS Filters

Filters is used to format the value of given expression for display to user. Some filter are built in filters and we can also define our filters. Filters are added to expression by using | symbol followed by a filter.  AngularJS provide...

3 Great Startup Opportunities Ideas for Egyptian Entrepreneurs

  This new age of technology is a proper time to start a new business. The world of startups has already shown that any kind of bright idea can travel through cyberspace and find the right target public.   Egypt has experie...

Anonymous Method in C#

Anonymous method is a method without any name and return type but have a body content and the optional arguments. This type of  method is created by using the delegate keyword. Return type of the anonymous method is dependence on the return ...

SQL Server : List all trigger associated with a table with SQL Server

During management of SQL server database many  times  we need to get list all triggers in SQL Server database with table name and table's schema . Following query can be used to get the desired result. SELECT sysobjects....

Asian IT Outsourcing Experience: Risks and Business Benefits

For today, outsourcing does not fear irrelevancy: businessmen relish powerful tools to integrate the remote development department processes into the company’s main workflow. In fact, there are no technical impediments towards outsourcing s...

Difference between Sliding and Absolute Expiration?

Sliding and Absolute Expiration The performance of an application can be increased by reducing the round trips made by server to database. This performance enhancement can be achieved by using asp.net cache. For using asp.net cache, cache...

Generate Excel file using php with PHPExcel library

To generate an excel file in core php we can use PHPExcel library. download library from the following link here - Download PHPExcel library   Lets cut the chase and see how can we do it :   First of all extract the .zip fo...

How to configure vuforia for android ?

Vuforia is basically used for image recognization or object recognization, you can scan from local images or from cloud database. In this tutorial, we will learn how to use vuforia service to recognize images from cloud database. 1. First o...
1 46 269
Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: