How to disable “Enter Key” to submit?

javascript Ноябрь 26th, 2008

<form action=”foo”>
<input type=”text” onkeypress=”return bar(event)”>
<input type=”submit”>
</form>

<script type=”text/javascript”>
function bar(evt){
var k=evt.keyCode||evt.which;
return k!=13;
}
</script>

Note however that this “enter” key behavior isn’t standard (and actually behaves differently across user agents); moreover this won’t prevent you from full server-side checking, as a client can have javascript deactivated (or even trick your javascript at runtime).

Tags: ,

PHP function for make JSON

javascript, php Ноябрь 7th, 2008

PHP function for make JSON from array

Read the rest of this entry »

Tags: , , , , , ,

easy sort table with javascript

javascript Август 20th, 2008

Скрипт сортировки данных в таблице с помощью JavaScript.

Read the rest of this entry »

Tags: , , , , ,

foreach in JavaScript

javascript, ПРОГРАММИРОВАНИЕ Июль 8th, 2008

Actually that’s not true at all.
As all javascript objects are really just associative arrays, there is a foreach like syntax for the ‘for’ construct.
Without it it would be very hard to work with many common javascript objects.
It’s actually very simple to use and incredibly useful if you like associative arrays.

You just have to make sure to use it on an associative array and not an object.
Example below

Read the rest of this entry »

Tags: , , ,

SEO Tools

Новости Май 13th, 2008

Keyword Density Checker

Keyword Cloud is a visual depiction of keywords used on a website, keywords having higer density are depicted in a larger fonts. Ideally your main keywords should appear in larger fonts at the start of the cloud.

Keyword Density is the percentage of occurrence of your keywords to the text in the rest of your webpage. It is important for your main keywords to have the correct keyword density to rank well in Search Engines.

Yandex статистика запросов

Плагин для Firefox.
Описание плагина: Yandex статистика запросов

Введите слово или словосочетание, обозначающее ваш товар или услугу, и нажмите кнопку «подобрать».

В результатах подбора будут приведены запросы пользователей, включающие заданное вами слово или словосочетание (слева), и другие запросы, которые делали искавшие его люди (справа).

Цифры рядом с каждым запросом в результатах подбора дают предварительный прогноз числа показов в месяц, которое вы получите, выбрав этот запрос в качестве ключевого слова. Так, цифра рядом со словом «телефон» обозначает число показов по всем запросам со словом «телефон»: «купить телефон», «сотовый телефон», «купить сотовый телефон», «купить новый сотовый телефон в крапинку» и т.п.

Tags: , , , , ,

Show, hide, toggle element in javascript

javascript Март 9th, 2008

Show, hide, toggle element in javascript

Tags:

библиотеки ajax

ajax Март 5th, 2008

Куча готовых ajax решений.

http://ajaxrain.com/

Tags: , ,