Your first 3 minutes are FREE talking live with me.
Please visit my website at: http://www.keen.com/Ask+Fran
Or, call me right now at: 1-800-275-5336 x0160
--
You received this message because you are subscribed to the Google Groups "Website Design Nz" group.
To post to this group, send email to website-design-nz@googlegroups.com.
To unsubscribe from this group, send email to website-design-nz+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/website-design-nz?hl=en.
Javascript crypto library
Hi all,
I'm looking for a suitable crypto library in javascript which provides DSA keys generation, BigInteger arithmetic and SHA hash algorithms. Also, I wish to know any suitable IDE for javascript development and debugging.
Any suggestions?
Thanks.
--
You received this message because you are subscribed to the Google Groups "JavaScript Forum" group.
To view this discussion on the web visit https://groups.google.com/d/msg/javascript-information/-/TAocI46wFtoJ.
To post to this group, send email to javascript-information@googlegroups.com.
To unsubscribe from this group, send email to javascript-information+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/javascript-information?hl=en.
I'm looking for a suitable crypto library in javascript which provides DSA keys generation, BigInteger arithmetic and SHA hash algorithms. Also, I wish to know any suitable IDE for javascript development and debugging.
Any suggestions?
Thanks.
--
You received this message because you are subscribed to the Google Groups "JavaScript Forum" group.
To view this discussion on the web visit https://groups.google.com/d/msg/javascript-information/-/TAocI46wFtoJ.
To post to this group, send email to javascript-information@googlegroups.com.
To unsubscribe from this group, send email to javascript-information+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/javascript-information?hl=en.
MASTER PSYCHIC READER~ ACCURATE & AMUSING
Your first 3 minutes are FREE talking live with me.
Please visit my website at: http://www.keen.com/Ask+Fran
Or, call me right now at: 1-800-275-5336 x0160
--
You received this message because you are subscribed to the Google Groups "Website Design Nz" group.
To post to this group, send email to website-design-nz@googlegroups.com.
To unsubscribe from this group, send email to website-design-nz+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/website-design-nz?hl=en.
Please visit my website at: http://www.keen.com/Ask+Fran
Or, call me right now at: 1-800-275-5336 x0160
--
You received this message because you are subscribed to the Google Groups "Website Design Nz" group.
To post to this group, send email to website-design-nz@googlegroups.com.
To unsubscribe from this group, send email to website-design-nz+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/website-design-nz?hl=en.
Re: newbie jquery question "class" in script tag
For targeting purposes.
You received this message because you are subscribed to the Google Groups "JavaScript Forum" group.
To post to this group, send email to javascript-information@googlegroups.com.
To unsubscribe from this group, send email to javascript-information+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/javascript-information?hl=en.
One example being you have a plugin that uses jquery. You check to see if jsbin is present on stage, if so, do not add another jquery script element to the page. If it isn't present, create the script element and append it to the document.
-- You received this message because you are subscribed to the Google Groups "JavaScript Forum" group.
To post to this group, send email to javascript-information@googlegroups.com.
To unsubscribe from this group, send email to javascript-information+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/javascript-information?hl=en.
newbie jquery question "class" in script tag
Hi I saw this line in a tutorial on javascript
<script class="jsbin" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.0/jquery.min.js"></script>
I am pretty new and have never seen a class assigned in a script tag before
Could someone could kindly explain me the possible purposes of this technique and how it works?
Many thanks
You received this message because you are subscribed to the Google Groups "JavaScript Forum" group.
To view this discussion on the web visit https://groups.google.com/d/msg/javascript-information/-/ZneLS9sHsHMJ.
To post to this group, send email to javascript-information@googlegroups.com.
To unsubscribe from this group, send email to javascript-information+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/javascript-information?hl=en.
MASTER PSYCHIC READER~ ACCURATE & AMUSING
Your first 3 minutes are FREE talking live with me.
Please visit my website at: http://www.keen.com/Ask+Fran
Or, call me right now at: 1-800-275-5336 x0160
--
You received this message because you are subscribed to the Google Groups "Website Design Nz" group.
To post to this group, send email to website-design-nz@googlegroups.com.
To unsubscribe from this group, send email to website-design-nz+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/website-design-nz?hl=en.
Please visit my website at: http://www.keen.com/Ask+Fran
Or, call me right now at: 1-800-275-5336 x0160
--
You received this message because you are subscribed to the Google Groups "Website Design Nz" group.
To post to this group, send email to website-design-nz@googlegroups.com.
To unsubscribe from this group, send email to website-design-nz+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/website-design-nz?hl=en.
Re: [Design with CSS 3760] What is the syntactic value of @
Thanks Brandtley, that makes total sense-Patrick
--
You received this because you are subscribed to the "Design the Web with CSS" at Google groups.
To post: css-design@googlegroups.com
To unsubscribe: css-design-unsubscribe@googlegroups.com
--
--
You received this because you are subscribed to the "Design the Web with CSS" at Google groups.
To post: css-design@googlegroups.com
To unsubscribe: css-design-unsubscribe@googlegroups.com
Re: [Design with CSS 3758] What is the syntactic value of @
Hey Patrick,
@ is usually a declarative statement that instructs the browser how to read the file.
@import imports an external (CSS) file, @charset sets the character encoding value of the file such as @charset "utf-8"; @media defines a number of attributes associated with what the physical properties of the display are determining how the file is rendered.
There's WAY more @ methods than you really need since browsers have standardized the way web documents are processed and almost intelligently decide these things for you, but @ just gives you more control over how your file is read by the browser instead of relying on defaults.
- Brandtley
Patrick wrote:
@ is usually a declarative statement that instructs the browser how to read the file.
@import imports an external (CSS) file, @charset sets the character encoding value of the file such as @charset "utf-8"; @media defines a number of attributes associated with what the physical properties of the display are determining how the file is rendered.
There's WAY more @ methods than you really need since browsers have standardized the way web documents are processed and almost intelligently decide these things for you, but @ just gives you more control over how your file is read by the browser instead of relying on defaults.
- Brandtley
Patrick wrote:
Hello Everyone
This is my first post here.
# is for ID
. is for class
but what is @ doing ? For instance @import ?
Thanks-Patrick
--
--
You received this because you are subscribed to the "Design the Web
with CSS" at Google groups.
To post: css-design@googlegroups.com
To unsubscribe: css-design-unsubscribe@googlegroups.com
[Design with CSS 3757] What is the syntactic value of @
Hello Everyone
--
You received this because you are subscribed to the "Design the Web with CSS" at Google groups.
To post: css-design@googlegroups.com
To unsubscribe: css-design-unsubscribe@googlegroups.com
This is my first post here.
# is for ID
. is for class
but what is @ doing ? For instance @import ?
Thanks-Patrick
-- --
You received this because you are subscribed to the "Design the Web with CSS" at Google groups.
To post: css-design@googlegroups.com
To unsubscribe: css-design-unsubscribe@googlegroups.com
MASTER PSYCHIC READER~ ACCURATE & AMUSING
Your first 3 minutes are FREE talking live with me.
Please visit my website at: http://www.keen.com/Ask+Fran
Or, call me right now at: 1-800-275-5336 x0160
--
You received this message because you are subscribed to the Google Groups "Website Design Nz" group.
To post to this group, send email to website-design-nz@googlegroups.com.
To unsubscribe from this group, send email to website-design-nz+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/website-design-nz?hl=en.
Please visit my website at: http://www.keen.com/Ask+Fran
Or, call me right now at: 1-800-275-5336 x0160
--
You received this message because you are subscribed to the Google Groups "Website Design Nz" group.
To post to this group, send email to website-design-nz@googlegroups.com.
To unsubscribe from this group, send email to website-design-nz+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/website-design-nz?hl=en.
Subscribe to:
Posts (Atom)