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

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)

Add custom Javascript in Magento admin form


Originally posted on Tahir Yasin:
$field = $fieldset->addField(‘title’, ‘text’, array( ‘label’ => Mage::helper(‘module’)->__(‘Title’), ‘name’ => ‘title’, ‘required’ => true, ‘class’ => ‘required-entry input-text’, )); $field->setAfterElementHtml(‘<script> //< ![C // here goes your custom Javascript //]]> </script>’);

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

Set multilevel top navigation menu bar dynamically using jQuery


Originally posted on LET ME SERVE YOU:
Menu will look like example image given below: Add below jQuery in the head section of the page: $(document).ready(function(){ $(‘ul.classname li.classname’).each(function(){ $(this).find(‘ul’).each(function(){ $(this).find(‘li’).each(function(){ $(this).find(‘a’).append(‘<span class=”navi-arrowright”></span>’); $(this).find(‘a:last’).find(‘span’).remove(); }); }); $(this).find(‘a:first’).css(‘padding-right’,’25px’).append(<img src=”/images/down-arrow.png” />’); }); });…

Tagged with: , , , , ,
Posted in javascript and jquery, php
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