jQuery

ASP.NET Assignments

Submitted by sba stuff on
My ASP.NET assignments in C#. Through These Assignments You Will Learn; (Click And Open Website Not A Project. And Give Folder Path) 1: Insert, Update and Delete Record. (SQL Server 2008 R2) 2: Using Google API. 3: Uploading Image. 4: Swapping Images 5: Toggling 6: Threads (CLOCK) 7: Session Handling. 8: Retrieval Of Records From Database and Show in Data Grid View. 9: XML READING And Writing. 10

Login Page with Shake Effect

Submitted by RobertSoriano on
This is a simple Ajax PHP login with welcome page using MySQL database and PDO query that will save you from sql injections. If the user log ins with the wrong username or password, the login box will shake. To begin, follow given steps: 1. Extract files and put the folder shakeLogin in your www(wamp) or htdocs(xampp) directory. 2. Open phpmyadmin and create a database named `wall` 3. Go to that

Search Highlight in jQuery

Submitted by GeePee on
This project will teach teach you how to include a search highlight in your website in an easy way using jQuery. What we'll do is to download highlight jQuery plugin and customize the codes. Here is the sample code that I created using highlight jQuery plugin: $(document).ready(function() { $('#search_btn').click(function(){ var search_str = $('#str_search').val(); $('body').unhighlight()

Dynamic Dropdown List

Submitted by GeePee on
This project will teach you how to create a dynamic dropdown list using php, javascript and jquery. Here in my example, there are two dropdown lists (Brand and Model). The user needs to select an item on the Brand list. The items on the Model list then automatically changes to the corresponding brand of cars. When the user has chosen an item on the Model list and clicked on the "Go" button, the

Online Heavy Equipment Testing - Setting up ProjectID

Submitted by nikzcruzalde on
Online Heavy Equipment Testing System was built using PHP/MySQL in PDO Approach. This post was just a part of the Heavy Equipment Testing System that I've built. I have used the following technology to develop this system: - PHP Data Objects (PDO) - HTML5 - Twitter Bootstrap - MySQL - jQuery Hope it can help you. Contact me via SMS at +639473849799 or email me at [email protected] for

How To build jquery ajax with php

Submitted by thusitcp on
This tutorial describes how to insert, update, and delete method using php/ajax. In this tutorial I am creating small project for user account creation. That will guide you how to process server side script using Ajax without refreshing the page. What is Ajax? Ajax stands for Asynchronous JavaScript and XML. It is a technology to use communicates to sever and load severs side content without

Javascript Mouse Enter and Mouse Leave Events

Submitted by Yorkiebar on

Introduction:

This tutorial is going to be explaining the Javascript/jQuery events for mouse enter and leave.

jQuery Events?

jQuery or Javascript events are triggered when the appropriate event trigger occurs. The trigger is easily determined by simply looking at the event name, for example; this tutorial is on the 'mouse enter' and 'mouse leave' events, which are therefore triggered when the user moves their mouse in to, and out of, the given event area.

HTML:

Before we can start our jQuery we need some basic HTML.

Parallax Scrolling #2 - CSS

Submitted by Yorkiebar on

Introduction:

This tutorial is the second part of my Parallax Scrolling mini-series tutorial in which we are going to be using CSS styling to style our required tags and classes.

CSS:

CSS is Cascade Style Sheets and are used to styling elements in HTML to make their visual appearance more appealing.

Internal:

I am going to be using internal CSS for this tutorial which means I only require the single HTML page. To achieve this, I am going to write some style tags within my head tags of my HTML page.