Forum: Javascript and JS frameworks
10-26-2012, 07:57 AM
|
|
Replies: 3
Views: 310
|
Forum: Javascript and JS frameworks
10-11-2012, 02:58 AM
|
|
Replies: 6
Views: 272
|
Forum: Javascript and JS frameworks
10-09-2012, 01:50 PM
|
|
Replies: 6
Views: 272
|
Forum: Javascript and JS frameworks
09-29-2012, 03:35 PM
|
|
Replies: 2
Views: 273
|
Forum: Javascript and JS frameworks
02-17-2012, 09:45 PM
|
|
Replies: 1
Views: 869
|
Forum: Javascript and JS frameworks
01-26-2012, 10:33 AM
|
|
Replies: 3
Views: 377
|
Forum: Javascript and JS frameworks
01-25-2012, 07:06 AM
|
|
Replies: 3
Views: 377
|
Forum: Javascript and JS frameworks
11-20-2011, 06:32 AM
|
|
Replies: 1
Views: 852
|
Forum: Javascript and JS frameworks
10-08-2011, 07:49 PM
|
|
Replies: 2
Views: 233
Quick and dirty plugin
Wrote a quick and dirty plugin
http://jsbin.com/oyaned
click edit in jsbin to see the code
|
Forum: Javascript and JS frameworks
10-02-2011, 02:50 PM
|
|
Replies: 10
Views: 389
jquery-1.2.6.min.js?
that old old version.
current version is jquery 1.6.4
check your filename is correct in the following section
<script src="jquery-1.2.6.min.js"type="text/javascript"></script>
PS: I...
|
Forum: Javascript and JS frameworks
09-02-2011, 02:35 AM
|
|
Replies: 6
Views: 968
Must be compatibility mode
Such type of trouble happens when IE is set to compatibility mode by the user.
Either OPs or Domedia's IEs are set to compatibility mode and hence one of sees the problem and the other doesnt.
...
|
Forum: Javascript and JS frameworks
08-25-2011, 08:26 PM
|
|
Replies: 3
Views: 195
Just FYI
Consider this part in your code
i < 10 ? '0' + i : i
It is basically a shortcut if statement that says if i is less than 10 prepend i with a 0 else, just let i be i
so the code makes 1 =...
|
Forum: HTML and CSS
08-17-2011, 04:05 AM
|
|
Replies: 11
Views: 861
|
Forum: HTML and CSS
08-16-2011, 09:09 PM
|
|
Replies: 11
Views: 861
|
Forum: HTML and CSS
08-16-2011, 03:09 AM
|
|
Replies: 11
Views: 861
html 5 data attribute
Code:
http://jsbin.com/uyiziz/edit#javascript,html
In Action:
http://jsbin.com/uyiziz/edit#preview
|
Forum: Javascript and JS frameworks
08-14-2011, 06:27 PM
|
|
Replies: 4
Views: 1,530
|
Forum: PHP
04-20-2011, 02:32 AM
|
|
Replies: 7
Views: 611
Not secure scenario:
1. User logs in for the...
Not secure scenario:
1. User logs in for the first time, you set a cookie on his/her machine.
2. On the next session user tries to access restricted page, you check if cookie exists and if it...
|
Forum: PHP
04-19-2011, 07:43 PM
|
|
Replies: 7
Views: 611
|
Forum: HTML and CSS
04-17-2011, 03:13 AM
|
|
Replies: 4
Views: 388
|
Forum: HTML and CSS
04-16-2011, 07:18 PM
|
|
Replies: 4
Views: 388
|
Forum: Dreamweaver General
04-02-2011, 02:23 PM
|
|
Replies: 4
Views: 743
Sorry if my post seemed harsh.
Use the...
Sorry if my post seemed harsh.
Use the latest jQuery available, its 1.5.2 as of date
To always get the latest version from Google's CDN (Content Delivery network) use
<script...
|
Forum: Dreamweaver General
04-02-2011, 05:06 AM
|
|
Replies: 4
Views: 743
simplyfy
<!-- First load jquery from google cdn. And no other jquery is needed in this page again -->
<script type="text/javascript"...
|
Forum: Dreamweaver General
04-02-2011, 04:52 AM
|
|
Replies: 4
Views: 743
Why are you loading jquery 3 times?
See my...
Why are you loading jquery 3 times?
See my comments in the code below
<script>
//This code will never work because $ is jQuery and jQuery hasnt yet beeen loaded
$(document).ready(function(){...
|
Forum: Javascript and JS frameworks
03-29-2011, 04:51 AM
|
|
Replies: 5
Views: 401
|
Forum: Javascript and JS frameworks
03-28-2011, 02:14 AM
|
|
Replies: 5
Views: 401
|