Blog Archives

My new experience with jquery


Disable the all  input fields with unique (ID) like numbers  in table : $(“#table_id  input[type=’text’][id=” + id + “]”).prop({ disabled: true }); Disable the all  Select fields with unique (ID)  like numbers in table : $(“select[id=” + id + “]”).prop({

Tagged with: , , , , , , , ,
Posted in javascript and jquery

datatable jquery : how to create table and display link on hover table row?


The datatable is jquery  plugin to create table and consist many functionality to do any thing with the table.Recently i was assiggned to drupal in which we used DataTables module to create table and call rest service populate data in table.I have

Tagged with: , , , , , , , , ,
Posted in Practice Makes a beginner to become php programmer expert(practical task to become php programmer)

How to calculate last friday using Javascript


Originally posted on Web Developer Blogs:
todayDate = new Date(); LastFridayDate = new Date(); LastFridayDate.setDate(LastFridayDate.getDate()-1); while (LastFridayDate.getDay() != 5){ LastFridayDate.setDate(LastFridayDate.getDate()-1); } // Friday = 5 if(todayDate.getDay() == 5) { console.log(todayDate); //if today is Friday, it will display today date }…

Tagged with: , , ,
Posted in javascript

Processing a form with AngularJS + PHP


thank you for valuable post

Tagged with: , , , , , ,
Posted in javascript and jquery

AngularJS Sample Code for get MySql data using PHP


Originally posted on PHP CMS Force:
Introduction: HTML is great for declaring static documents, but it falters when we try to use it for declaring dynamic views in web-applications. AngularJS lets you extend HTML vocabulary for your application. The resulting…

Tagged with: , , , , , ,
Posted in javascript and jquery, Practice Makes a beginner to become php programmer expert(practical task to become php programmer)
Follow Tutorial on WordPress.com
categories
Calendar
May 2024
M T W T F S S
 12345
6789101112
13141516171819
20212223242526
2728293031  
Follow me on Twitter
Blog Stats
  • 88,191 hits