Rabu, 27 Januari 2010

Removing Frame from Google Image Search, Blogcatalog, and Digg

Do you have any wallpaper site or photos site which get lot of traffic but there is no conversion? I know you might get frustrated to solve this problem. The problem is usually image search traffic from google search engine will bring visitors on a frame, this frame should have to be removed to get full page attention.

Using this trick it should can break any frames coming to your website. The risk behind this code already known and confirmed by some webmaster. This code can bring down your your SERP in time, also your site might got penalties. The good side, people already try using this code get more accurate data from analystic.

<script language=”JavaScript” type=”text/javascript”>
if (top.location != self.location) top.location = self.location;
</script>
Put this code in your page code it should works like magic removing frames, usually people will put it on header files. Please note, I’m NOT recommended you to use this code because you already know the risk of using this code. If you still using this code that mean you’re using it at your own risk.

Minggu, 03 Januari 2010

Open Link in New Window and Resize It

If you completed the assignments in the previous session you know how to open new windows. Like the alert() method, the open() also takes arguments. When used without any arguments, the new window displayed is blank. Here I tell you how to embellish this new window.

<A HREF="javascript:void(0)"

onclick="window.open('welcome.html')">

Open a new window</A>

Open a new window

This opens a new window with welcome.html page.

The arguments of JavaScript open()

The open() method takes four arguments:

window.open('URL', 'NAME', 'FEATURES', 'REPLACE')

We have already seen that if we provide the URL of a document through the first argument, it will be loaded in the new window.

NAME: specifies a name for the new window that can then be used as value for the TARGET attribute of <A> tags.

FEATURES: let you define properties of the window such as width, height, presence or absence of scrollbars, location bar, stauts bar etc. The list of features is quite daunting so we shall go over them gradually.

REPLACE: takes a boolean value... we won't bother ourselves with this argument!

<A HREF="javascript:void(0)"

onclick="window.open('welcome.html','welcome')">

Open a new window</A>

Open a new window



Kamis, 29 Mei 2008

Pengenalan JavaScript

JavaScript adalah sebuah bahasa script paling populer dan paling banyak dipakai, juga bekerja di semua browser utama, seperti Internet Explore, Mozilla, Firefox, Opera, dll. JavaScript dipakai untuk mempercatik design sebuah halaman web, validasi form, security (keamanan), dan banyak lagi.

Apa itu JavaScript ?

JavaScript adalah sebuah bahasa pemrograman, yang menempel dan bekerja pada halaman HTML. Dan disebut sebagai bahasa script karena program JavaScript dapat bekerja langsung tanpa diperlukan dicompile. JavaScript bersifat OpenSource -dapat dipakai, dibuat, atau dimodifikasi secara gratis oleh siapa saja.

Kegunaan JavaScript

  • Banyak sekali kegunaan JavaScript diantaranya memberikan designer sebuah bahasa pemrograman yang bisa menjadikan sang designer menjadi programmer juga. Sehingga nantinya dengan menggunakan JavaScript sebuah halaman web tidak lagi statis.
  • JavaScript dapat bekerja pada sebuah events, JavaScript dapat dieksekusi ketika terjadinya event tertentu seperti ketika user melakukan click, ketika halaman di-load, dan ketika event-event lainnya.
  • JavaScript dapat membaca dan menulis elemen HTML.
  • JavaScript dapat digunakan untuk validasi data, JavaScript dapat digunakan untuk memvalidasi form sebelum form tersebut di-submit atau dieksekusi oleh server.
  • JavaScript dapat digunakan untuk mendeteksi browser yang digunakan visitor.
  • JavaScript dapat digunakan untuk membuat cookies, JavaScript dapat digunakan untuk menaruh dan menerima informasi dari komputer visitor.

Sabtu, 24 November 2007

[JavaScript] Re: Client IP address

1. There's no (legitimate) way to get this type of info past a proxy or
gateway.

2. Don't hijack threads. If you're starting a new topic, please start a
new thread.

> Posted by: "Anand Subramanian" axsubram@yahoo.com axsubram
> Date: Fri Nov 23, 2007 9:37 am ((PST))
>
> Hi,
>
> What is the best way to get the IP address of the client machine of
> the website visitor. We tried a few options, but in most cases we are
> getting the address from the ISP/Proxy such that we get the same
> address for multiple machines in our office.
>
> We are trying to build a voting page and want to do duplicate
> checking (not too scientific, but decent) using IP addresses. Please
> help how to get differnet IP addresses for machines even though they
> use the same proxy or ISP?
>
> thanks
>
> Anand
>
>
> ----- Original Message ---- From: L. Miller <anmldr@bellsouth.net>
> To: JavaScript_Official@yahoogroups.com Sent: Thursday, November 22,
> 2007 1:45:11 AM Subject: [JavaScript] Border
>
> I found the answer. Thanks anyway.
>
> border="0"
>
> Linda
>
> P.S. I didn't respond to my own message because this group is
> moderated. Sorry about that. My message was not yet posted before I
> found the answer.

--
This message has not been scanned for viruses.

Since I do not use a Microsoft operating
system or software, and use only plaintext
for email, there is little need for me to do so.

Jumat, 23 November 2007

[JavaScript] Re: question about confirm box in javascript

Yes, using div is the best idea. It is being used everywhere now a
days. You can give the div an alert box like look. Also you can make
it draggable, use script aculo for that.

Visit http://aiaiai.com for more groups to join
Yahoo! Groups Links

<*> To visit your group on the web, go to:

http://groups.yahoo.com/group/JavaScript_Official/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:

http://groups.yahoo.com/group/JavaScript_Official/join

(Yahoo! ID required)

<*> To change settings via email:
mailto:JavaScript_Official-digest@yahoogroups.com
mailto:JavaScript_Official-fullfeatured@yahoogroups.com

<*> To unsubscribe from this group, send an email to:
JavaScript_Official-unsubscribe@yahoogroups.com

<*> Your use of Yahoo! Groups is subject to:

http://docs.yahoo.com/info/terms/

Re: [JavaScript] question about confirm box in javascript

No, it is not possible to change these parameters in an alert box.
This is a very basic browser interface. If you really - absolutely -
need these changes, create your own popup. Or, you can do this
interactively by creating a <div> element with visible="false", and
then setting visible="true" to display it.

--Tim Sabin


> hi
>
> following is the code i am using presently =
>
> ======================================
> msg = "Selecting OK means you will no longer receive emails. If you
> wish to continue to hear from us, click on Cancel and you will be
> taken to our homepage.";
>
> if (confirm(msg)) return true;
> else window.navigate("http://www.websitename.com"); return false;
> return true
> ======================================
>
> my question is about confirm pop up box.
>
> 1.
> is it possible to change the title of the confirm box to "Are you
> Sure"
>
> 2.
> and instead of "ok cancel" buttons that appear for confirm box can
> we specify "yes no"
>
> please advice.
>
>
>
>
>
> Visit http://aiaiai.com for more groups to join
> Yahoo! Groups Links
>
>
>
>
>

--Tim Sabin

Visit http://aiaiai.com for more groups to join
Yahoo! Groups Links

<*> To visit your group on the web, go to:

http://groups.yahoo.com/group/JavaScript_Official/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:

http://groups.yahoo.com/group/JavaScript_Official/join

(Yahoo! ID required)

<*> To change settings via email:
mailto:JavaScript_Official-digest@yahoogroups.com
mailto:JavaScript_Official-fullfeatured@yahoogroups.com

<*> To unsubscribe from this group, send an email to:
JavaScript_Official-unsubscribe@yahoogroups.com

<*> Your use of Yahoo! Groups is subject to:

http://docs.yahoo.com/info/terms/

[JavaScript] Client IP address

Hi,

What is the best way to get the IP address of the client machine of the website visitor.
We tried a few options, but in most cases we are getting the address from the ISP/Proxy such that we get the same address for multiple machines in our office.

We are trying to build a voting page and want to do duplicate checking (not too scientific, but decent) using IP addresses. Please help how to get differnet IP addresses for machines even though they use the same proxy or ISP?

thanks

Anand


----- Original Message ----
From: L. Miller <anmldr@bellsouth.net>
To: JavaScript_Official@yahoogroups.com
Sent: Thursday, November 22, 2007 1:45:11 AM
Subject: [JavaScript] Border

I found the answer. Thanks anyway.

border="0"

Linda

P.S. I didn't respond to my own message because this group is
moderated. Sorry about that. My message was not yet posted before I
found the answer.

____________________________________________________________________________________
Be a better sports nut! Let your teams follow you
with Yahoo Mobile. Try it now.

http://mobile.yahoo.com/sports;_ylt=At9_qDKvtAbMuh1G1SQtBI7ntAcJ

[Non-text portions of this message have been removed]

Visit http://aiaiai.com for more groups to join
Yahoo! Groups Links

<*> To visit your group on the web, go to:

http://groups.yahoo.com/group/JavaScript_Official/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:

http://groups.yahoo.com/group/JavaScript_Official/join

(Yahoo! ID required)

<*> To change settings via email:
mailto:JavaScript_Official-digest@yahoogroups.com
mailto:JavaScript_Official-fullfeatured@yahoogroups.com

<*> To unsubscribe from this group, send an email to:
JavaScript_Official-unsubscribe@yahoogroups.com

<*> Your use of Yahoo! Groups is subject to:

http://docs.yahoo.com/info/terms/

[JavaScript] Client IP address

Hi,

What is the best way to get the IP address of the client machine of the website visitor.
We tried a few options, but in most cases we are getting the address from the ISP/Proxy such that we get the same address for multiple machines in our office.

We are trying to build a voting page and want to do duplicate checking (not too scientific, but decent) using IP addresses. Please help how to get differnet IP addresses for machines even though they use the same proxy or ISP?

thanks

Anand


----- Original Message ----
From: L. Miller <anmldr@bellsouth.net>
To: JavaScript_Official@yahoogroups.com
Sent: Thursday, November 22, 2007 1:45:11 AM
Subject: [JavaScript] Border

I found the answer. Thanks anyway.

border="0"

Linda

P.S. I didn't respond to my own message because this group is
moderated. Sorry about that. My message was not yet posted before I
found the answer.

____________________________________________________________________________________
Be a better pen pal.
Text or chat with friends inside Yahoo! Mail. See how.

http://overview.mail.yahoo.com/

[Non-text portions of this message have been removed]

Visit http://aiaiai.com for more groups to join
Yahoo! Groups Links

<*> To visit your group on the web, go to:

http://groups.yahoo.com/group/JavaScript_Official/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:

http://groups.yahoo.com/group/JavaScript_Official/join

(Yahoo! ID required)

<*> To change settings via email:
mailto:JavaScript_Official-digest@yahoogroups.com
mailto:JavaScript_Official-fullfeatured@yahoogroups.com

<*> To unsubscribe from this group, send an email to:
JavaScript_Official-unsubscribe@yahoogroups.com

<*> Your use of Yahoo! Groups is subject to:

http://docs.yahoo.com/info/terms/

Kamis, 22 November 2007

Re: [JavaScript] Border

On Nov 21, 2007, at 3:15 PM, L. Miller wrote:

> I found the answer. Thanks anyway.
>
> border="0"
>
> Linda
>
> P.S. I didn't respond to my own message because this group is
> moderated. Sorry about that. My message was not yet posted before I
> found the answer.
>


Hey Linda.


The code:

<img border="0" src="file.jpg">

is HTML. It will absolutely do what you want it to do (remove the
blue border from images used as links) but has to be applied to every
single image in every single file on your site. The CSS rules in
my previous email allow you to put the rule in one place (in your
external css file) and affect all the images-used-as-links on your
whole site. If you want to narrow the definition (like, only apply
it to images in the navigation area) that's easy enough to do as
well. CSS is a much more flexible and powerful solution than HTML,
in general.

Cheers,
-- Ian


Visit http://aiaiai.com for more groups to join
Yahoo! Groups Links

<*> To visit your group on the web, go to:

http://groups.yahoo.com/group/JavaScript_Official/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:

http://groups.yahoo.com/group/JavaScript_Official/join

(Yahoo! ID required)

<*> To change settings via email:
mailto:JavaScript_Official-digest@yahoogroups.com
mailto:JavaScript_Official-fullfeatured@yahoogroups.com

<*> To unsubscribe from this group, send an email to:
JavaScript_Official-unsubscribe@yahoogroups.com

<*> Your use of Yahoo! Groups is subject to:

http://docs.yahoo.com/info/terms/

Re: [JavaScript] Link decoration

On Nov 21, 2007, at 2:28 PM, L. Miller wrote:

> Newbie here. Please be gentle.
>
> I have an image that is a link. But, I do not want there to be any
> decoration around the image for it being a link, or a visited link. In
> the css, what would I use to specify this?
>
> For text, I think that it would be text-decoration:none
>
> Thank you,
> Linda
>


Hey Linda,

the css to affect the border of images would be:

img { border: none; }

to specify images used as links, nest the rule like so:

a:link img { border: none; }

As an aside, the following rule, which you mention,

a { text-decoration: none }

will remove the _underline_ from links on your page. Be careful
about doing that. Studies have shown that most users use the
underlying as a primary cue when looking for links on a page. I
would, as a rule, not remove the underline from links. If you do,
strongly consider making the link blue. Changing the color *and*
removing the underlying is a recipe for confusion in most cases.


Good luck, and let us know if you have any other questions.


Visit http://aiaiai.com for more groups to join
Yahoo! Groups Links

<*> To visit your group on the web, go to:

http://groups.yahoo.com/group/JavaScript_Official/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:

http://groups.yahoo.com/group/JavaScript_Official/join

(Yahoo! ID required)

<*> To change settings via email:
mailto:JavaScript_Official-digest@yahoogroups.com
mailto:JavaScript_Official-fullfeatured@yahoogroups.com

<*> To unsubscribe from this group, send an email to:
JavaScript_Official-unsubscribe@yahoogroups.com

<*> Your use of Yahoo! Groups is subject to:

http://docs.yahoo.com/info/terms/

[JavaScript] question about confirm box in javascript

hi

following is the code i am using presently =

======================================
msg = "Selecting OK means you will no longer receive emails. If you
wish to continue to hear from us, click on Cancel and you will be
taken to our homepage.";

if (confirm(msg)) return true;
else window.navigate("http://www.websitename.com"); return false;
return true
======================================

my question is about confirm pop up box.

1.
is it possible to change the title of the confirm box to "Are you
Sure"

2.
and instead of "ok cancel" buttons that appear for confirm box can
we specify "yes no"

please advice.

Visit http://aiaiai.com for more groups to join
Yahoo! Groups Links

<*> To visit your group on the web, go to:

http://groups.yahoo.com/group/JavaScript_Official/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:

http://groups.yahoo.com/group/JavaScript_Official/join

(Yahoo! ID required)

<*> To change settings via email:
mailto:JavaScript_Official-digest@yahoogroups.com
mailto:JavaScript_Official-fullfeatured@yahoogroups.com

<*> To unsubscribe from this group, send an email to:
JavaScript_Official-unsubscribe@yahoogroups.com

<*> Your use of Yahoo! Groups is subject to:

http://docs.yahoo.com/info/terms/

[JavaScript] SAP Online Training Through Online Servers

hi friends,

This is murali, we are into SAP online Training. If u r interested contact: xi.onlinetraining.yahoo.com

Go through the attachement for the better understanding.

with regards,
murali.


---------------------------------
Be a better sports nut! Let your teams follow you with Yahoo Mobile. Try it now.

[Non-text portions of this message have been removed]

Visit http://aiaiai.com for more groups to join
Yahoo! Groups Links

<*> To visit your group on the web, go to:

http://groups.yahoo.com/group/JavaScript_Official/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:

http://groups.yahoo.com/group/JavaScript_Official/join

(Yahoo! ID required)

<*> To change settings via email:
mailto:JavaScript_Official-digest@yahoogroups.com
mailto:JavaScript_Official-fullfeatured@yahoogroups.com

<*> To unsubscribe from this group, send an email to:
JavaScript_Official-unsubscribe@yahoogroups.com

<*> Your use of Yahoo! Groups is subject to:

http://docs.yahoo.com/info/terms/

Rabu, 21 November 2007

[JavaScript] Border

I found the answer. Thanks anyway.

border="0"

Linda

P.S. I didn't respond to my own message because this group is
moderated. Sorry about that. My message was not yet posted before I
found the answer.

Visit http://aiaiai.com for more groups to join
Yahoo! Groups Links

<*> To visit your group on the web, go to:

http://groups.yahoo.com/group/JavaScript_Official/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:

http://groups.yahoo.com/group/JavaScript_Official/join

(Yahoo! ID required)

<*> To change settings via email:
mailto:JavaScript_Official-digest@yahoogroups.com
mailto:JavaScript_Official-fullfeatured@yahoogroups.com

<*> To unsubscribe from this group, send an email to:
JavaScript_Official-unsubscribe@yahoogroups.com

<*> Your use of Yahoo! Groups is subject to:

http://docs.yahoo.com/info/terms/

[JavaScript] Link decoration

Newbie here. Please be gentle.

I have an image that is a link. But, I do not want there to be any
decoration around the image for it being a link, or a visited link. In
the css, what would I use to specify this?

For text, I think that it would be text-decoration:none

Thank you,
Linda

Visit http://aiaiai.com for more groups to join
Yahoo! Groups Links

<*> To visit your group on the web, go to:

http://groups.yahoo.com/group/JavaScript_Official/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:

http://groups.yahoo.com/group/JavaScript_Official/join

(Yahoo! ID required)

<*> To change settings via email:
mailto:JavaScript_Official-digest@yahoogroups.com
mailto:JavaScript_Official-fullfeatured@yahoogroups.com

<*> To unsubscribe from this group, send an email to:
JavaScript_Official-unsubscribe@yahoogroups.com

<*> Your use of Yahoo! Groups is subject to:

http://docs.yahoo.com/info/terms/

Re: [JavaScript] Re: javascript and forms changing multiple field values

Google is an excellent resource. I'm sure a search on innerHTML will yield
lots of examples.

Regards, Dave S

----- Original Message -----
From: "Michael Horowitz" <michael@horowitzfamily.net>
To: <JavaScript_Official@yahoogroups.com>
Sent: Wednesday, November 21, 2007 4:37 AM
Subject: Re: [JavaScript] Re: javascript and forms changing multiple field
values


> I'm new and my books on javascript are on the way from Amazon.
>
> How would I do that in code. Do you know a good site that might have an
> example I could modify showing this type of use?
> Jon Stephens wrote:
>>
>>
>> > javascript and forms changing multiple field values
>> > Posted by: "michaelh613" michael@horowitzfamily.net
>> <mailto:michael%40horowitzfamily.net> michaelh613
>> > Date: Mon Nov 19, 2007 10:23 am ((PST))
>> >
>> > I have a form which is setup traditionally using tables. I know its
>> > not Web Standard but it is an older site built by someone else in
>> > Frontpage. The form has a field category and subcategory with the
>> > ability to make a new category and subcategory. When new is chosen I
>> > want that field to turn from a select field to a text input field. I
>> > am able to do that one at a time using onchange if the variable is new
>> > call a PHP script using javascript which outputs one row. However I
>> > cannot have it change two rows at one time. It appears that is not
>> > supported using innerHTML. Does anyone know how I would do this or a
>> > tutorial I could use. I'm a newbie and have a book on this on the way.
>>
>> Set the innerHTML property for each element separately.
>>
>> --
>> This message has not been scanned for viruses.
>>
>> Since I do not use a Microsoft operating
>> system or software, and use only plaintext
>> for email, there is little need for me to do so.
>>
>>
>
>
>
> Visit http://aiaiai.com for more groups to join
> Yahoo! Groups Links
>
>
>

Visit http://aiaiai.com for more groups to join
Yahoo! Groups Links

<*> To visit your group on the web, go to:

http://groups.yahoo.com/group/JavaScript_Official/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:

http://groups.yahoo.com/group/JavaScript_Official/join

(Yahoo! ID required)

<*> To change settings via email:
mailto:JavaScript_Official-digest@yahoogroups.com
mailto:JavaScript_Official-fullfeatured@yahoogroups.com

<*> To unsubscribe from this group, send an email to:
JavaScript_Official-unsubscribe@yahoogroups.com

<*> Your use of Yahoo! Groups is subject to:

http://docs.yahoo.com/info/terms/

Re: [JavaScript] need some help....

I almost said what Tim did say. Frankly, there is no legitimate use for
this type of code.

Regards, Dave S

----- Original Message -----
From: "Joseph Cosmas" <mushyjc@yahoo.co.uk>
To: <JavaScript_Official@yahoogroups.com>
Sent: Wednesday, November 21, 2007 12:05 AM
Subject: Re: [JavaScript] need some help....


> ...is there any specific legal framework to address such kind of page.
> Just shade light on this please.
>
> ./Joseph
>
> ----- Original Message ----
> From: Tim Sabin <tim@timsabin.com>
> To: JavaScript_Official@yahoogroups.com
> Sent: Tuesday, 20 November, 2007 8:40:33 PM
> Subject: Re: [JavaScript] need some help....
>
>
>
>
>
>
>
>
>
>
>
>
>
> And, let me add, that's unethical, and a 99.99% sure sign that
> this is
>
> a virus / phishing / worse page.
>
>
>
> --Tim Sabin
>
>
>
>> It looks like it is trying to prevent the user from leaving the page.
>
>>
>
>> Regards, Dave S
>
>>
>
>> ----- Original Message -----
>
>> From: "ai_amakusa" <wong_udik.javascrip t@blogger. com>
>
>> To: <JavaScript_Official @yahoogroups. com>
>
>> Sent: Sunday, November 18, 2007 4:32 AM
>
>> Subject: [JavaScript] need some help....
>
>>
>
>>
>
>> > what do you think about this script
>
>> >
>
>> >
>
>> > <script language="javascrip t">
>
>> > function bubbay() {window.location( "http://mysite. com");
>
>> > window.onunload = bubbay() }
>
>> > </script>
>
>> >
>
>> >
>
>> > can you give some clue about this??
>
>> >
>
>> >
>
>> >
>
>> > Visit http://aiaiai. com for more groups to join
>
>> > Yahoo! Groups Links
>
>> >
>
>> Visit http://aiaiai. com for more groups to join
>
>> Yahoo! Groups Links
>
>>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
> Change settings via the Web (Yahoo! ID required)
>
> Change settings via email: Switch delivery to Daily Digest | Switch
> format to Traditional
>
>
>
> Visit Your Group
> |
>
> Yahoo! Groups Terms of Use |
>
> Unsubscribe
>
>
>
>
>
>
>
>
>
>
>
>
>
> Recent Activity
>
>
>
> 30
>
> New Members
>
>
>
>
>
>
>
>
>
>
> Visit Your Group
>
>
>
>
>
>
> Search Ads
>
> Get new customers.
>
> List your web site
>
> in Yahoo! Search.
>
>
>
> Connect w/Parents
>
> on Yahoo! Groups
>
> Get support and
>
> share information.
>
>
>
> Yahoo! Groups
>
> Women of Curves
>
> Discuss food, fitness
>
> and weight loss.
>
>
>
>
>
>
>
> .
>
>
>
>
>
>
>
>
>
>
> <!--
>
> #ygrp-mkp{
> border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px
> 14px;}
> #ygrp-mkp hr{
> border:1px solid #d8d8d8;}
> #ygrp-mkp #hd{
> color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px
> 0px;}
> #ygrp-mkp #ads{
> margin-bottom:10px;}
> #ygrp-mkp .ad{
> padding:0 0;}
> #ygrp-mkp .ad a{
> color:#0000ff;text-decoration:none;}
> -->
>
>
>
> <!--
>
> #ygrp-sponsor #ygrp-lc{
> font-family:Arial;}
> #ygrp-sponsor #ygrp-lc #hd{
> margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
> #ygrp-sponsor #ygrp-lc .ad{
> margin-bottom:10px;padding:0 0;}
> -->
>
>
>
> <!--
>
> #ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean,
> sans-serif;}
> #ygrp-mlmsg table {font-size:inherit;font:100%;}
> #ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean,
> sans-serif;}
> #ygrp-mlmsg pre, code {font:115% monospace;}
> #ygrp-mlmsg * {line-height:1.22em;}
> #ygrp-text{
> font-family:Georgia;
> }
> #ygrp-text p{
> margin:0 0 1em 0;}
> #ygrp-tpmsgs{
> font-family:Arial;
> clear:both;}
> #ygrp-vitnav{
> padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
> #ygrp-vitnav a{
> padding:0 1px;}
> #ygrp-actbar{
> clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
> #ygrp-actbar .left{
> float:left;white-space:nowrap;}
> .bld{font-weight:bold;}
> #ygrp-grft{
> font-family:Verdana;font-size:77%;padding:15px 0;}
> #ygrp-ft{
> font-family:verdana;font-size:77%;border-top:1px solid #666;
> padding:5px 0;
> }
> #ygrp-mlmsg #logo{
> padding-bottom:10px;}
>
> #ygrp-vital{
> background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
> #ygrp-vital #vithd{
> font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
> #ygrp-vital ul{
> padding:0;margin:2px 0;}
> #ygrp-vital ul li{
> list-style-type:none;clear:both;border:1px solid #e0ecee;
> }
> #ygrp-vital ul li .ct{
> font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
> #ygrp-vital ul li .cat{
> font-weight:bold;}
> #ygrp-vital a{
> text-decoration:none;}
>
> #ygrp-vital a:hover{
> text-decoration:underline;}
>
> #ygrp-sponsor #hd{
> color:#999;font-size:77%;}
> #ygrp-sponsor #ov{
> padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
> #ygrp-sponsor #ov ul{
> padding:0 0 0 8px;margin:0;}
> #ygrp-sponsor #ov li{
> list-style-type:square;padding:6px 0;font-size:77%;}
> #ygrp-sponsor #ov li a{
> text-decoration:none;font-size:130%;}
> #ygrp-sponsor #nc{
> background-color:#eee;margin-bottom:20px;padding:0 8px;}
> #ygrp-sponsor .ad{
> padding:8px 0;}
> #ygrp-sponsor .ad #hd1{
> font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%;}
> #ygrp-sponsor .ad a{
> text-decoration:none;}
> #ygrp-sponsor .ad a:hover{
> text-decoration:underline;}
> #ygrp-sponsor .ad p{
> margin:0;}
> o{font-size:0;}
> .MsoNormal{
> margin:0 0 0 0;}
> #ygrp-text tt{
> font-size:120%;}
> blockquote{margin:0 0 0 4px;}
> .replbq{margin:4;}
> -->
>
>
>
>
>
>
>
>
> ___________________________________________________________
> Yahoo! Answers - Got a question? Someone out there knows the answer. Try
> it
> now.
> http://uk.answers.yahoo.com/
>
> [Non-text portions of this message have been removed]
>
>
>
> Visit http://aiaiai.com for more groups to join
> Yahoo! Groups Links
>
>
>

Visit http://aiaiai.com for more groups to join
Yahoo! Groups Links

<*> To visit your group on the web, go to:

http://groups.yahoo.com/group/JavaScript_Official/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:

http://groups.yahoo.com/group/JavaScript_Official/join

(Yahoo! ID required)

<*> To change settings via email:
mailto:JavaScript_Official-digest@yahoogroups.com
mailto:JavaScript_Official-fullfeatured@yahoogroups.com

<*> To unsubscribe from this group, send an email to:
JavaScript_Official-unsubscribe@yahoogroups.com

<*> Your use of Yahoo! Groups is subject to:

http://docs.yahoo.com/info/terms/

Selasa, 20 November 2007

Re: [JavaScript] Re: need some help....

What do you think?!?!?!?!?!?!?!? (this is so funny)
1 - It will not work. The } is on the wrong place.
2 - Why? Are simply saying to the browser: "onload" please load another page. Why don't you put the "another page" to show right away?
3 - Please, people, have the decency of do some homework. And when I say "homework" means try yourself, then ask the right questions. What are the right question? You might ask. The right questions are the ones you would be willing to answer if you were the guy to answer them. Got it?
4 - DON'T USE need help, help, please help on the subject. You probably need help, I don't see much people starting a message to a group if not for help. Instead try to be a little more specific. So some other person can look from the subjects and find some answer before opening each message.

I really want to help some people, when I can. Put these dumb questions are so damn dumb, that make some serious guys to get out of the group.

tresschwartzs <tresschwartzs@yahoo.com> wrote: --- In JavaScript_Official@yahoogroups.com, "ai_amakusa"
<wong_udik.javascript@...> wrote:
>
> what do you think about this script
>
>
> <script language="javascript">
> function bubbay() {window.location("http://mysite.com");
> window.onunload = bubbay() }
> </script>
>
>
> can you give some clue about this??

I can guarantee you that your site would immediately go into my list
of blocked sites.

doug




---------------------------------
Be a better pen pal. Text or chat with friends inside Yahoo! Mail. See how.

[Non-text portions of this message have been removed]

Visit http://aiaiai.com for more groups to join
Yahoo! Groups Links

<*> To visit your group on the web, go to:

http://groups.yahoo.com/group/JavaScript_Official/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:

http://groups.yahoo.com/group/JavaScript_Official/join

(Yahoo! ID required)

<*> To change settings via email:
mailto:JavaScript_Official-digest@yahoogroups.com
mailto:JavaScript_Official-fullfeatured@yahoogroups.com

<*> To unsubscribe from this group, send an email to:
JavaScript_Official-unsubscribe@yahoogroups.com

<*> Your use of Yahoo! Groups is subject to:

http://docs.yahoo.com/info/terms/

Re: [JavaScript] need some help....

Not that I know of. Sorry!

--Tim Sabin


Joseph Cosmas wrote:
> ...is there any specific legal framework to address such kind of page. Just shade light on this please.
>
> ./Joseph
>
> ----- Original Message ----
> From: Tim Sabin <tim@timsabin.com>
> To: JavaScript_Official@yahoogroups.com
> Sent: Tuesday, 20 November, 2007 8:40:33 PM
> Subject: Re: [JavaScript] need some help....
>
>
>
>
>
>
>
>
>
>
>
>
>
> And, let me add, that's unethical, and a 99.99% sure sign that this is
>
> a virus / phishing / worse page.
>
>
>
> --Tim Sabin
>
>
>
>
>> It looks like it is trying to prevent the user from leaving the page.
>>
>
>
>
>
>> Regards, Dave S
>>
>
>
>>
>>
>
>
>> ----- Original Message -----
>>
>
>
>> From: "ai_amakusa" <wong_udik.javascrip t@blogger. com>
>>
>
>
>> To: <JavaScript_Official @yahoogroups. com>
>>
>
>
>> Sent: Sunday, November 18, 2007 4:32 AM
>>
>
>
>> Subject: [JavaScript] need some help....
>>
>
>
>
>
>
>
>>> what do you think about this script
>>>
>
>
>
>
>
>
>>> <script language="javascrip t">
>>>
>
>
>>> function bubbay() {window.location( "http://mysite. com");
>>>
>
>
>>> window.onunload = bubbay() }
>>>
>
>
>>> </script>
>>>
>
>
>
>
>
>
>>> can you give some clue about this??
>>>
>
>
>
>
>
>
>
>
>>> Visit http://aiaiai. com for more groups to join
>>>
>
>
>>> Yahoo! Groups Links
>>>
>
>
>>>
>>>
>
>
>> Visit http://aiaiai. com for more groups to join
>>
>
>
>> Yahoo! Groups Links
>>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
> Change settings via the Web (Yahoo! ID required)
>
> Change settings via email: Switch delivery to Daily Digest | Switch format to Traditional
>
>
>
> Visit Your Group
> |
>
> Yahoo! Groups Terms of Use |
>
> Unsubscribe
>
>
>
>
>
>
>
>
>
>
>
>
>
> Recent Activity
>
>
>
> 30
>
> New Members
>
>
>
>
>
>
>
>
>
>
> Visit Your Group
>
>
>
>
>
>
> Search Ads
>
> Get new customers.
>
> List your web site
>
> in Yahoo! Search.
>
>
>
> Connect w/Parents
>
> on Yahoo! Groups
>
> Get support and
>
> share information.
>
>
>
> Yahoo! Groups
>
> Women of Curves
>
> Discuss food, fitness
>
> and weight loss.
>
>
>
>
>
>
>
> .
>
>
>
>
>
>
>
>
>
>
> <!--
>
> #ygrp-mkp{
> border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
> #ygrp-mkp hr{
> border:1px solid #d8d8d8;}
> #ygrp-mkp #hd{
> color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
> #ygrp-mkp #ads{
> margin-bottom:10px;}
> #ygrp-mkp .ad{
> padding:0 0;}
> #ygrp-mkp .ad a{
> color:#0000ff;text-decoration:none;}
> -->
>
>
>
> <!--
>
> #ygrp-sponsor #ygrp-lc{
> font-family:Arial;}
> #ygrp-sponsor #ygrp-lc #hd{
> margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
> #ygrp-sponsor #ygrp-lc .ad{
> margin-bottom:10px;padding:0 0;}
> -->
>
>
>
> <!--
>
> #ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
> #ygrp-mlmsg table {font-size:inherit;font:100%;}
> #ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, sans-serif;}
> #ygrp-mlmsg pre, code {font:115% monospace;}
> #ygrp-mlmsg * {line-height:1.22em;}
> #ygrp-text{
> font-family:Georgia;
> }
> #ygrp-text p{
> margin:0 0 1em 0;}
> #ygrp-tpmsgs{
> font-family:Arial;
> clear:both;}
> #ygrp-vitnav{
> padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
> #ygrp-vitnav a{
> padding:0 1px;}
> #ygrp-actbar{
> clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
> #ygrp-actbar .left{
> float:left;white-space:nowrap;}
> .bld{font-weight:bold;}
> #ygrp-grft{
> font-family:Verdana;font-size:77%;padding:15px 0;}
> #ygrp-ft{
> font-family:verdana;font-size:77%;border-top:1px solid #666;
> padding:5px 0;
> }
> #ygrp-mlmsg #logo{
> padding-bottom:10px;}
>
> #ygrp-vital{
> background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
> #ygrp-vital #vithd{
> font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
> #ygrp-vital ul{
> padding:0;margin:2px 0;}
> #ygrp-vital ul li{
> list-style-type:none;clear:both;border:1px solid #e0ecee;
> }
> #ygrp-vital ul li .ct{
> font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
> #ygrp-vital ul li .cat{
> font-weight:bold;}
> #ygrp-vital a{
> text-decoration:none;}
>
> #ygrp-vital a:hover{
> text-decoration:underline;}
>
> #ygrp-sponsor #hd{
> color:#999;font-size:77%;}
> #ygrp-sponsor #ov{
> padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
> #ygrp-sponsor #ov ul{
> padding:0 0 0 8px;margin:0;}
> #ygrp-sponsor #ov li{
> list-style-type:square;padding:6px 0;font-size:77%;}
> #ygrp-sponsor #ov li a{
> text-decoration:none;font-size:130%;}
> #ygrp-sponsor #nc{
> background-color:#eee;margin-bottom:20px;padding:0 8px;}
> #ygrp-sponsor .ad{
> padding:8px 0;}
> #ygrp-sponsor .ad #hd1{
> font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%;}
> #ygrp-sponsor .ad a{
> text-decoration:none;}
> #ygrp-sponsor .ad a:hover{
> text-decoration:underline;}
> #ygrp-sponsor .ad p{
> margin:0;}
> o{font-size:0;}
> .MsoNormal{
> margin:0 0 0 0;}
> #ygrp-text tt{
> font-size:120%;}
> blockquote{margin:0 0 0 4px;}
> .replbq{margin:4;}
> -->
>
>
>
>
>
>
>
>
> ___________________________________________________________
> Yahoo! Answers - Got a question? Someone out there knows the answer. Try it
> now.
> http://uk.answers.yahoo.com/

>
> [Non-text portions of this message have been removed]
>
>
>
> Visit http://aiaiai.com for more groups to join
> Yahoo! Groups Links
>
>
>
>
>
>


Visit http://aiaiai.com for more groups to join
Yahoo! Groups Links

<*> To visit your group on the web, go to:

http://groups.yahoo.com/group/JavaScript_Official/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:

http://groups.yahoo.com/group/JavaScript_Official/join

(Yahoo! ID required)

<*> To change settings via email:
mailto:JavaScript_Official-digest@yahoogroups.com
mailto:JavaScript_Official-fullfeatured@yahoogroups.com

<*> To unsubscribe from this group, send an email to:
JavaScript_Official-unsubscribe@yahoogroups.com

<*> Your use of Yahoo! Groups is subject to:

http://docs.yahoo.com/info/terms/

Re: [JavaScript] Re: javascript and forms changing multiple field values

I'm new and my books on javascript are on the way from Amazon.

How would I do that in code. Do you know a good site that might have an
example I could modify showing this type of use?
Jon Stephens wrote:
>
>
> > javascript and forms changing multiple field values
> > Posted by: "michaelh613" michael@horowitzfamily.net
> <mailto:michael%40horowitzfamily.net> michaelh613
> > Date: Mon Nov 19, 2007 10:23 am ((PST))
> >
> > I have a form which is setup traditionally using tables. I know its
> > not Web Standard but it is an older site built by someone else in
> > Frontpage. The form has a field category and subcategory with the
> > ability to make a new category and subcategory. When new is chosen I
> > want that field to turn from a select field to a text input field. I
> > am able to do that one at a time using onchange if the variable is new
> > call a PHP script using javascript which outputs one row. However I
> > cannot have it change two rows at one time. It appears that is not
> > supported using innerHTML. Does anyone know how I would do this or a
> > tutorial I could use. I'm a newbie and have a book on this on the way.
>
> Set the innerHTML property for each element separately.
>
> --
> This message has not been scanned for viruses.
>
> Since I do not use a Microsoft operating
> system or software, and use only plaintext
> for email, there is little need for me to do so.
>
>

Visit http://aiaiai.com for more groups to join
Yahoo! Groups Links

<*> To visit your group on the web, go to:

http://groups.yahoo.com/group/JavaScript_Official/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:

http://groups.yahoo.com/group/JavaScript_Official/join

(Yahoo! ID required)

<*> To change settings via email:
mailto:JavaScript_Official-digest@yahoogroups.com
mailto:JavaScript_Official-fullfeatured@yahoogroups.com

<*> To unsubscribe from this group, send an email to:
JavaScript_Official-unsubscribe@yahoogroups.com

<*> Your use of Yahoo! Groups is subject to:

http://docs.yahoo.com/info/terms/

[JavaScript] Re: Json

> Posted by: "codewriter12345" no_reply@yahoogroups.com codewriter12345
> Date: Mon Nov 19, 2007 10:26 am ((PST))
>
> Hello,
> How I can send a data in Json format to a server page (PHP) and then
> update the MYSQl database.

1. In JS, assemble the desired data into a string in JSON format.

2. Update the value of a hidden form field with this string.

3. Submit the form.

4. In PHP, get the value of the form field from $_POST.

5. Assemble an appropriate SQL UPDATE statement and execute it.

cheers

jon.

>
> Regards,
> Devan


--
This message has not been scanned for viruses.

Since I do not use a Microsoft operating
system or software, and use only plaintext
for email, there is little need for me to do so.


Visit http://aiaiai.com for more groups to join
Yahoo! Groups Links

<*> To visit your group on the web, go to:

http://groups.yahoo.com/group/JavaScript_Official/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:

http://groups.yahoo.com/group/JavaScript_Official/join

(Yahoo! ID required)

<*> To change settings via email:
mailto:JavaScript_Official-digest@yahoogroups.com
mailto:JavaScript_Official-fullfeatured@yahoogroups.com

<*> To unsubscribe from this group, send an email to:
JavaScript_Official-unsubscribe@yahoogroups.com

<*> Your use of Yahoo! Groups is subject to:

http://docs.yahoo.com/info/terms/