www.webdeveloper.com
+ Post New Thread
Page 9 of 10 FirstFirst ... 7 8 9 10 LastLast
Threads 201 to 225 of 248

Forum: JavaScript

JavaScript (not Java) Discussion and technical support, including AJAX and frameworks (JQuery, MooTools, Prototype...)

  1. Sticky Thread Sticky: Accessible Scripting 101

    Welcome to the "Accessible Scripting 101" thread. This thread will feature JavaScript scripts developed with accessibility in mind. In other words, these are scripts in which will degrade properly in the case that JavaScript isn't available to your end-user (which it isn't always, believe it or...

    Started by fredmv‎, 04-08-2005 10:05 PM
    • Replies: 12
    • Views: 104,352
    05-16-2013, 04:39 AM Go to last post
  2. Sticky Thread Sticky: Attn: Expert coders!

    I'm looking to update the scripts over at JavaScript Source (JSS) and need some good coders who are willing to take on a challenge. Here's the plan: Search through the code and see what you can bring up-to-date (i.e., DOM methods, unobtrusive, etc.). (There are some real old ones on there.)...

    Started by LeeU‎, 04-14-2006 01:08 PM
    6 Pages
    1 2 3 4 5 ... 6
    • Replies: 79
    • Views: 225,671
    12-30-2009, 08:00 AM Go to last post
  3. Sticky Thread Sticky: Please help us to help you.

    if you follow a few simple guidlines when posting you will be morelikly to recive an accurate reply quickly and with minimal fuss. Search. Click on search at the top and enter your term, the odd's are someone will already have asked your question. Describe. Tell us what it should do, how it is...

    Started by scragar‎, 04-29-2005 04:20 AM
    2 Pages
    1 2
    • Replies: 28
    • Views: 159,270
    05-31-2007, 09:07 AM Go to last post
  4. Sticky Thread Sticky: Attention All Coders!

    Hey, all you JavaScript coders! Are you interested in getting your scripts published? Would you like to share them with the rest of the world? You can submit them to the JavaScript Source at: http://javascript.internet.com/contribute/

    Started by LeeU‎, 03-31-2005 10:45 AM
    • Replies: 0
    • Views: 81,340
    03-31-2005, 10:45 AM Go to last post
  5. Sticky Thread Sticky: Message posting Guidelines

    Having seen countless threads opened on these forums that make no sense at all,and do no help to any volunteer to respond to it. I thought its only appropriate to write something like this that may help a new poster to get help quicker. Following are some general guidelines that must be kept in...

    Started by Khalid Ali‎, 08-25-2003 03:54 PM
    3 Pages
    1 2 3
    • Replies: 40
    • Views: 213,325
    08-07-2004, 12:15 PM Go to last post
  6. Sticky Thread Sticky: Wondering how to hide your source code?

    Well, give up right now then, because it is absolutely impossible. "No right-click" scripts and other similar scripts will only end up annoying your users in which actually don't even want to steal your source code or images, but rather just want to casually use their browser features. Doing things...

    Started by fredmv‎, 02-02-2004 03:12 PM
    • Replies: 0
    • Views: 202,561
    02-02-2004, 03:12 PM Go to last post
  1. Color different areas of image using by clicking on color

    i have created the following: - http://www.ruks.co.uk/inscape.html As you see when you click on the colour red or blue it change the Pilasters but once a color is select you cannot select the other colour how can this been done any help be appriciated

    Started by ruks12‎, 04-22-2013 03:11 PM
    • Replies: 12
    • Views: 1,723
    04-30-2013, 04:51 AM Go to last post
  2. ajax google map api

    I have been stuck on this problem for 3 days. longest problem i have ever had fixing something. I am obviously new to AJAX. PLease please please help please take a look at this site and my code and tell me where im messing up here.. www.wuno.biz This is the index page

    Started by Nicholas Diaz‎, 04-29-2013 11:21 PM
    ajax, gmapapi, onload
    • Replies: 0
    • Views: 504
    04-29-2013, 11:21 PM Go to last post
  3. Sort elements in reverse

    This is my jquery script to sort elements on a page. How do i reverse the order from last to first? <script type="text/javascript"> // When the document is ready set up our sortable with it's inherant function(s) $(document).ready(function() { $("#sortlist").sortable({ update :...

    Started by igotosleepat2‎, 05-08-2011 05:47 PM
    • Replies: 5
    • Views: 1,722
    04-29-2013, 09:39 PM Go to last post
  4. .getElementsByClassName wont work

    http://jsbin.com/emasoh/4/edit

    Started by vdftr‎, 04-27-2013 12:29 PM
    • Replies: 5
    • Views: 789
    04-29-2013, 02:38 PM Go to last post
  5. Collapsing DIV's to hide and expose text.

    Hey guys, Hope someone here can help me out. I've just started coding and javascript is the first language I've decided to tackle. I figured I'd design a quick page to have fun stuff to try and challenge myself with, and I'm stuck. So here is what I've done... I have a div with some text...

    Started by l0ad3dr3v0lv3r‎, 04-27-2013 11:07 PM
    • Replies: 8
    • Views: 911
    04-29-2013, 12:52 PM Go to last post
  6. Question Disable the "text-select cursor"

    Hey guys, I've developed a script, which allowes the user to move a div element. But if I'm moving it (while holding the left mouse), my browser (Chrome) starts to select the whole page. Its very annoying... Is there any way to disable the select event on the whole page? But there's another...

    Started by deSpeach‎, 04-27-2013 07:08 AM
    cursor, javascript, jquery, select, text
    • Replies: 4
    • Views: 793
    04-29-2013, 10:57 AM Go to last post
  7. Prototype Prototype Based scripting languages

    What is the basic difference between prototype based and object oriented based languages ,though successful prototype based scripting languages exists why java adopted object oriented approach ?

    Started by chivukula181‎, 04-28-2013 10:35 PM
    • Replies: 0
    • Views: 295
    04-28-2013, 10:35 PM Go to last post
  8. regex {x,y} not working as I expected

    {x,y} Matches x to y number of occurrences of a regular expression. e.g. /\d{2,4}/ matches at least 2 but no more than 4 digits. var re = /\d{2,4}/; document.write(re.test('12345')); This code outputs, true. Because the string contains 5 digits, shouldn't this output false?

    Started by stormcrow‎, 04-28-2013 06:21 PM
    • Replies: 1
    • Views: 482
    04-28-2013, 07:15 PM Go to last post
  9. Loop through table with specific conditions (turning data into an xml string)

    Hey all, I currently have a form with data being displayed via a web service call with JQuery's $.ajax() function which dynamically feeds the values into input fields into the form and creates table data too. I would like to retrieve the data from this form and put it into an XML string to send...

    Started by MannyG‎, 04-28-2013 04:42 PM
    • Replies: 0
    • Views: 421
    04-28-2013, 04:42 PM Go to last post
  10. Adding ' Got Ya' message

    Hi, I want to add a message such as 'got ya' to the following game once the monster is caught. Could you please demonstrate how this is done? Secondly, if I want to start adding other features such as a second monster (other suggestions welcome) where is the best place to look on the internet...

    Started by CSA‎, 04-28-2013 01:55 PM
    • Replies: 0
    • Views: 452
    04-28-2013, 01:55 PM Go to last post
  11. How to run function when a key is pressed?

    So basically what i want to do is when you press a specific key a function you assign it to will run. I dont know if you use addEventListener or what. Thank you!

    Started by Bobofet‎, 04-27-2013 04:33 PM
    javascript, keys
    • Replies: 3
    • Views: 614
    04-28-2013, 06:23 AM Go to last post
  12. Exclamation jQuery jQuery Mobile 1.3 - set 1 or more Panels to open by default at 55em wide

    Ok, so using the "ui-responsive-panel" class on a page prevents swiping or clicking-in-the-content of the page from closing a panel after the screen 55em wide. That's awesome, but it's only half of what I'm trying to do. I need the panel to be open by default when the page opens or when the page...

    Started by amandaNHT‎, 04-28-2013 12:03 AM
    • Replies: 0
    • Views: 498
    04-28-2013, 12:03 AM Go to last post
  13. Help, writing text with variables

    I have a variable that generates any number from 0 - 20. When i do document.write("variable") it just deletes everything on the page and shows the random number. How can i make the random number to show up without having the rest of the page deleted. Thanks for your help!

    Started by Bobofet‎, 04-27-2013 05:24 PM
    • Replies: 1
    • Views: 479
    04-27-2013, 11:01 PM Go to last post
  14. loading JS in a AJAX environment

    Working with Gmap API scripts all work fine. when i load a map that renders directions it just shows the div outline of the containers. I think this is cause its JS and since ajax is loading the page onload it is causing problems rendering the maps with turn by turn directions.. I think...

    Started by Nicholas Diaz‎, 04-27-2013 10:04 PM
    gmap api, javascript, jquery, js load order
    • Replies: 0
    • Views: 460
    04-27-2013, 10:04 PM Go to last post
  15. ajax locatiion of .js files

    I have a index page which pulls all my other pages in to a div on the main index page. Everything works fine. I have had google maps api working plenty of times on other sites. But when i juse a click function which i on a smaller map canvas in the footer it is supposed to populate a...

    Started by Nicholas Diaz‎, 04-27-2013 12:31 PM
    ajax jquery google maps
    • Replies: 0
    • Views: 418
    04-27-2013, 12:31 PM Go to last post
  16. Wink Javascript to display current age

    I am looking for a javascript to display the current age of an individual. The website is for my granddaughter and I would like to be able to say, "Today I am 6 months, 3 days old". Is there an easy way to do this?? Thank you, aimalou

    Started by aimalou‎, 09-30-2004 10:58 AM
    2 Pages
    1 2
    • Replies: 22
    • Views: 46,138
    04-27-2013, 09:15 AM Go to last post
  17. Timeout Delay prob

    hello guys i am making a small game and have a problem with an animation caused by a timeout; var time = 0; for (var i = 0; i < seq.length-1; i++) { ... // Move a Stone setTimeout(function(){stone_move(...)},time); time += 800;

    Started by Abbadon‎, 04-25-2013 03:23 PM
    animation, delay, timeout
    • Replies: 5
    • Views: 1,080
    04-27-2013, 07:21 AM Go to last post
  18. Lightbulb [ Opinion ] Javascript that is best suited for visitors?

    Hey guys, In my navigation I have a section labeled: User Control. I have 3 links so far. For all browsers I have a "Print Page" link. If you visit using IE I have a "Add to Favorites" and "Make Us Your Homepage" links. What other user controls are handy? A link to make text bigger? What...

    Started by JesseToxik‎, 04-25-2013 12:22 AM
    javascript, opinion
    • Replies: 6
    • Views: 1,167
    04-26-2013, 04:29 PM Go to last post
  19. jQuery Newbie needing clickable captions in a scroller image

    I am trying to make clickable links in a image box of a scroller. I tried changing the #captions p to #captions a in the change image section but no luck. Help please. <div id="image_wrap" style="margin:0;padding:0"> <!-- Initially the image is a simple 1x1 pixel transparent GIF --> <div...

    Started by tobenn‎, 04-25-2013 04:34 PM
    • Replies: 1
    • Views: 729
    04-26-2013, 02:22 PM Go to last post
  20. Using JavaScript to create a Kiosk

    I am trying to use JavaScript to create a KIOSK. It will display a page for a number of seconds and than another, w/o user interaction. I have come to the conclusion that this is not possible because the language lacks threads. The following two Perl scripts crudely approximates the desired...

    Started by John Menarek‎, 04-26-2013 10:20 AM
    objects, threads, window.open
    • Replies: 1
    • Views: 571
    04-26-2013, 01:54 PM Go to last post
  21. geolocation failing on all android devices

    Hi, I've got a mobile site with this code in javascript / jquery: navigator.geolocation.getCurrentPosition(function(position) { lat=position.coords.latitude; lng=position.coords.longitude; sensor=""; codeLatLng(lat,lng,sensor); ...

    Started by jimr451‎, 04-25-2013 10:01 AM
    • Replies: 4
    • Views: 997
    04-26-2013, 01:08 PM Go to last post
  22. Novice Question: Return an attribute that is a number

    I've been trying to make the button respond with the height of the div (500). Can anyone help. <style> #stuff { height:500px; color:#39C; width:200px; } </style> <script language="JavaScript">

    Started by JoeEE‎, 04-25-2013 01:48 PM
    • Replies: 3
    • Views: 845
    04-26-2013, 09:22 AM Go to last post
  23. Need help tweaking a line of code

    Hi there, hope you all are doing well. I downloaded a firefox add-in from the VOIP hosting provider for my company. The function is it detects phone numbers in the browser and makes them clickable. Unfortunately this line of code makes it read numbers as (512)123-1234. What we need it to do is...

    Started by AllDay‎, 04-26-2013 12:14 AM
    • Replies: 1
    • Views: 436
    04-26-2013, 04:42 AM Go to last post
  24. Form: Adding an image preview box with a browse button

    Hi there, I'm new here and new to javascript, so bare with me on my question. I am creating a form that needs to have the user upload an image using the browse button, and after successfully selecting their image (at a specific size), that image is previewed "live" on the form for the user to...

    Started by webnk‎, 04-24-2013 10:29 PM
    • Replies: 4
    • Views: 1,079
    04-25-2013, 08:23 PM Go to last post
  25. jQuery show\hide iframe

    hi, i have an IFRAME and i want to hide the iframe (display) after the user click on him. - when user clock on the iframe will hide (dispaly="").. i know how to do this in input.. but i cant make the iframe to input. thnks a lot..

    Started by ToMeRiKo‎, 04-25-2013 12:17 PM
    • Replies: 2
    • Views: 536
    04-25-2013, 05:36 PM Go to last post

Forum Information and Options

Moderators of this Forum
Users Browsing this Forum

There are currently 966 users browsing this forum. (0 members & 966 guests)

Thread Display Options

Use this control to limit the display of threads to those newer than the specified time frame.

Allows you to choose the data by which the thread list will be sorted.

Order threads in...

Note: when sorting by date, 'descending order' will show the newest results first.

Icon Legend

Contains unread posts
Contains unread posts
Contains no unread posts
Contains no unread posts
More than 15 replies or 150 views
Hot thread with unread posts
More than 15 replies or 150 views
Hot thread with no unread posts
Closed Thread
Thread is closed
Thread Contains a Message Written By You
You have posted in this thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
HTML5 Development Center



Recent Articles