Really surprised, Googling for a decent online code editor provided little results. Just wondering if anyone has any recommendations for an online code editor which is:
Good looking
Ideally jQuery
Uses a <textarea>
Highlighting for CSS
Has line numbers
So far the best I can find is:
http://codepress.sourceforge.net/
Thanks in advan...
Is it possible to get an array consisting of all id's on a page with jQuery?
...
Hi, so the problem is, that i want to insert a new row after another row in my html
here is my html
<html>
<head>
<title>JQuery Problem 2</title>
<script type="text/javascript" src="jquery-1.4.min.js"></script>
<script type="text/javascript" src="problem2.js"></script>
</head>
<body>
<div id="game">
<...
Is it possible using jQuery to change the page URL while passing post data to the new page?
...
I am creating a simple game.
I want to use jQUERY to rotate the joints making it move. I am using .animate ( http://api.jquery.com/animate/ ) to animate CSS properties but if it is also possible to use Javscript, I can make my own custom code.
More TO-THE-POINT
How do I rotate images in CSS or Javascript? I prefer CSS but Javascript i...
Is there a jquery micro-architecture similar to cairngorm for Flex? That helps development a lot. It makes it more disciplined, and layers out the code.
Is there a good starting point that I have to look up, before starting coding in jquery. I would like the code to be extensible and maintainable.
...
Hi,
I am using one of snook.ca script for simple slideshow. Here it is in a nutshell:
<div class="fadein">
<img src="banner1.jpg" width="645" height="307"/>
<img src="banner2.jpg" width="645" height="307"/>
<img src="banner3.jpg" width="645" height="307"/>
</div>
<script>
$(function(){
$('.fadein img:gt(0)').hid...
I have a plugin where the original code is ...
// when the DOM is ready...
$(document).ready(function() {
var $panels = $('.slider .scrollContainer > div');
var $container = $('.slider .scrollContainer');
However this assumes that it just 'runs' when the DOM loads. I'd like to use it more like...
$('.slider').slider();
So my quest...
I have a page where I need SWFObject, jQuery and Google Maps API.
I thought that I could use the benefits of using:
<script type="text/javascript" src="http://www.google.com/jsapi?key=INSERT-YOUR-KEY"></script>
<script type="text/javascript">
google.load("jquery", "1.4.1");
google.load("swfobject", "2.2");
google.lo...
When using window.location.href, I'd like to pass POST data to the new page I'm opening. is this possible using JavaScript and jQuery?
...
Hi guys,
I'm new to jquery and ajax and I'm having trouble doing this...
I have a php webpage that builds a table with values from a mysql table. The rows are "messages" and the last field of the row is a boolean field "read" that states if the message has been read or not.
Building the table, I transformed the boolean value to a chec...
I want to be able to pass fields into the edit form when a user attempts to edit a row, but I don't want these fields to be editable - I want them to just be hidden so they still get sent to the server.
For instance:
colModel :[
{label: 'Game ID', name: 'game_id', editable:true},
{label: 'Component ID', name: 'component_id', ed...
I have a scrollbar that has to follow some timeline. It is being constantly scrolled with .scrollLeft using setInterval.
I still want the user to be able to naturally take control and just drag the scrollbar away. If I can detect the user did that, I would just turn off the setInterval timer and leave the control to the user until he e...
I have my drop menu sliding down nicely but it does it on all ul's in my navigation. I need it to drop the menu for only the hovered ul.I tried to use the "this" element but don't know enough about jQuery to get it to work. Anyone???
Here's the HTML page (edited for simplicity)
<div id="main-nav">
<ul><h1><a href="index.cfm">About U...
I have a menu list something like this:
<ul class="submenuList">
<li><a onclick="loadItem('Blue%20Orchid%20Press')" id="Blue%20Orchid%20Press">class="on">Blue Orchid Press</a></li>
<li><a onclick="loadItem('Brilliant%20Telecommunications')" id="Brilliant%20Telecommunications" class="off">Brilliant Telecommunications</a></li>
<li...
I have a div("dv1") with AJAX update panel inside which contains multiple dropdown controls. These controls do a postback when the index is changed. Then I use a jQuery hover function like the one below:
$('#lblDate').hover($('#dv1').slideDown(),$('#dv1').slideUp());
This works fine when I hover on the label, but whenever I try to sel...
I have a list of links that are inserted into a DIV element using jQuery and ajax. The list of links are paginated where I only show 10 links at a time. After the ajax call completes and the links are inserted into the DIV, I use the jQuery Colorbox plugin to open the link up in a nice Colorbox. Colorbox automatically groups the links th...
When a user selects a file, I want another file field to appear. It works for the first file, but if i choose a file in the second field, it doesn't get called again. Why not?
jquery script
$(document).ready(function() {
var i = 1;
$('input:file[name$=\'uploadedFile'+(i-1)+'\']').change(function() {
var f...
Hi,
In my application I have a line drawn from one table cell to another cell through jQuery SVG plugin. Following the steps of the blog post http://www.openstudio.fr/Library-for-simple-drawing-with.html I managed to add it. But at the same time I need to remove that line and draw it on another place when mouse hovers. Is there a metho...
You must have noticed one link in yahoo.com, msn.com or other popular websites named "Page Options". When you click this link you get a popup displaying different small several color icons. After clicking one of these icons your page theme changes without entire page refresh. Now you are able to see the same page with different look and ...