Linki z soboty:
- http://dbachrach.com/blog/2007/04/15/spotlight-like-search-as-you-type-with-css-ajax-js/ - ciekawe podejście i wykorzystywanie js. Zawiera również odnośnik do przykładów editInPlace.
- Przykłady:
-
function hideSearchTypes (i,j) {
-
var theDiv = document.getElementById(j).getElementsByTagName(‘li’);
-
for(var d = 1; d < theDiv.length; d++) {
-
var theID = ‘res-’+i+‘-’+d;
-
document.getElementById(theID).style.display = ‘none’;
-
}
-
}
Inny przykład:
-
<form id="search_form" action="" method="get"> -
<input type="text" value="" name="q" id="q" autocomplete="off" onkeyup="doSearch();" /> -
<input type="image" id="search_image" onclick="doSearch();return false;" src="search_icon.png" alt="Search" /> -
</form>
-
<div id="searchResultsDiv"> -
Start typing. Your results will show below instantly.
-
</div>
Biblioteka google - http://code.google.com/p/jslibs/wiki/JavascriptTips - przeznaczone do obsługi biblioteki seamonkey (silnika JS w Mozilli)
Binary with XmlHTTPRequest
var req = new XMLHttpRequest();
req.open('GET', "http://code.google.com/images/code_sm.png",false);
req.overrideMimeType('text/plain; charset=x-user-defined');
//req.overrideMimeType('application/octet-stream');
req.send(null);
var val = req.responseText;
Print( escape(val.substr(0,10)) );
Brak komentarzy:
Prześlij komentarz