RSS

Monthly Archives: Şubat 2013

Jquery code with wordpress jetpack

1
2
3
4
5
6
7
8
<script type="text/javascript">
jQuery(document).ready(function($){
 
	$(".news-text").click(function(){
	  $(this).children(":first").toggle('slow');
	});
});
</script>

Aliasing the jQuery Namespace

When using another JavaScript library, we may wish to call $.noConflict() to avoid namespace difficulties. When this function is called, the $ shortcut is no longer available, forcing us to write jQuery each time we would normally write $. However, the handler passed to the .ready() method can take an argument, which is passed the global jQuery object. This means we can rename the object within the context of our .ready() handler without affecting other code:

1
2
3
jQuery(document).ready(function($) {
  // Code using $ as usual goes here.
});

Arama Terimleri:

 

Posted by on 26 Şubat 2013 in Bilgisayar, Programlama, Wordpress

Leave a comment

Toggle visibilty of first child of this by jQuery

1
$(this).children(":first").toggle('slow');
 

Posted by on 25 Şubat 2013 in Bilgisayar, Wordpress

Leave a comment

MySQL SELECT INTO Alternatifi

Mysql’de

1
2
3
SELECT * INTO table2 
FROM table1 
WHERE ...;

şeklinde bir sql cümlesi çalıştıramıyoruz. Bunun yerine bazı alternatifler üretebiliriz. Eğer var olan bir tabloyu üreterek içine select ifadesinin döndürdüğü değerleri eklemek istiyorsak söyle bir şeyler yazabiliriz. Read the rest of this entry »

Arama Terimleri:

 

Posted by on 04 Şubat 2013 in Bilgisayar, Programlama, SQL

Leave a comment