Abdul-Azeez / jqueryfundamentals

0 stars 1 forks source link

Chapter 2 jquery https://github.com/Abdul-Azeez/jqueryfundamentals/blob/master/exercises/js/sandbox.js #1

Closed Abdul-Azeez closed 9 years ago

Abdul-Azeez commented 9 years ago

https://github.com/Abdul-Azeez/jqueryfundamentals/blob/master/exercises/js/sandbox.js

abhishekjain16 commented 9 years ago
  1. $collectimageattr =$('img[alt]'); console.log($collectimageattr);

We need to log alt attribute not elements.

  1. $selectinput = $('form#search input[type ="text"]'); console.log($selectinput); console.log($selectinput.parent()); $selectinput.parent().addClass("input");

What if this is not immediate parent

Abdul-Azeez commented 9 years ago

Done