- Ciekawe podcasty - http://softwareas.com/ - zawiera również dużo innych przemyśleń np. tworzenie ciekawych gradientów z poziomu linii poleceń ImageMagic . Powstał ciekawy projekt uruchamiania JS po stronie serwera - https://phobos.dev.java.net/, opiera sie na projekcie jMaki i bibliotece Dojo. Aha oto właściwa strona pddcastow/pokazów: http://softwareas.com/category/ajax/
- http://softwareas.com/ajaxjavascript-8-ways-to-create-graphics-on-the-fly - tworzenie grafiki
- Ajaxian - http://ajaxian.com/
- Przykłady z ksiązki "Ajax Design patterns" - http://ajaxiify.com/run/
- AjaxPatterns.org
- http://ajaxpatterns.org/Frameworks - opis frameworkow. Obrazek - http://ajaxpatterns.org/Frameworks_Matrix
- Jak zmienić styl standardowych kontrolek HTML - http://www.456bereastreet.com/archive/200701/styling_form_controls_with_css_revisited/
- http://simonwillison.net/2006/Dec/20/json/ -JSON, ale jak w PHP
- Przechowywanie stanu w IFrame - http://codinginparadise.org/weblog/2005/08/ajax-tutorial-saving-session-across.html jako odpowiedź na http://www.codeguru.com/cpp/i-n/ieprogram/displayinginformation/article.php/c12397__2/ i źródło http://msdn.microsoft.com/library/default.asp?url=/workshop/author/behaviors/reference/behaviors/userdata.asp
- Client-site Coding
- Ciekawy kod:
As promised, here is the complete script. Notice the last line, which assigns the externalLinks
function to the window's onload
event handler. This triggers the function when the document has finished loading.
function externalLinks() {
if (!document.getElementsByTagName) return;
var anchors = document.getElementsByTagName("a");
for (var i=0; i<anchors.length; i++) {
var anchor = anchors[i];
if (anchor.getAttribute("href") &&
anchor.getAttribute("rel") == "external")
anchor.target = "_blank";
}
}
window.onload = externalLinks;
Brak komentarzy:
Prześlij komentarz