I know Coldfusion 8 and 9 should be able to run PHP codes; although I have not testing this yet. I would like to know if is possible to use JQuery Fancy Captcha: http://www.webdesignbeach.com/beachbar/ajax-fancy-captcha-jquery-plugin in a ColdFusion application. If yes, how could it be implemented?
Thanks
Vicente
...
beginners question for jquery... or javascript in general - but preferrably done in jquery!
i'm trying to achieve an effect of content sliding (and easing) in when a menu button is clicked. it would be for a normal site with different content (gallery, portfolio, videos, etc) and submenus on some pages that would slide in.
i have learne...
I am using jQuery's wysiwyg plugin on one of the pages. When the form get's posted I have checked if there is some content present in the editor. If the editor is blan then I have shown the message to enter some content in the wysiwyg editor. However this validation is not getting applied since when I alert the value of wysiwyg edior it ...
Hello
i have this HTML page
<html>
<body>
<div>a</div>
<div>b</div>
<div>c</div>
<div>d</div>
<div id='in_or_out'>e</div>
<div>f</div>
</body>
</html>
a,b,c,d,e and f could be divs also not just a plain text.
I want to get the mouse click event, but how could i know if it's inside or outside #in_or_out div ?
EDIT :: guys, i know h...
Hello everybody.
I need to show on a page multiple -time zone independent- elapsed time timers.
I'd like to have something similar to what is shown on the NASA mission pages, where they show the mission time (e.g. http://www.nasa.gov/mission_pages/shuttle/main/index.html).
I'd like to use a jquery plugin for that, so I'd like you to adv...
Hello.
What is the best way to do this dynamic events linking between divs in jquery.
my HTML page:
<html>
<body>
<div id="parent1"></div>
<div id="parent2"></div>
<div id="parent3"></div>
<div id="child1"></div>
<div id="child2"></div>
<div id="child3"></div>
</body>
</html>
for each clicked parent i want to .toggle its child
...
Hi,
I have an array of objects fetched using jQuery.getJSON(). I want every one of my objects to be represented by HTML div element, so when you click the element you have access to all the properties of corresponding object. What is the best way to do it?
I wanted to do it like this:
$('.mydiv').click(function() {
var id = $(this)....
I have the following code. On cliking the button on the last li, I can create the new li. However, once created, if I click on the latest button created, new li is created. It seems it doesn`t recognise the last created li as the last li. Can someone help on this please.
<html xmlns="http://www.w3.org/1999/xhtml" >
<script...
I have a textbox array in my form. The textbox(s) are dynamically added using javascript function.
The text box are named as below:
account[0]_number account[0]_balance
account[1]_number account[1]_balance
How can I get the values of these textboxes using jquery?
Below is how I tried, but it gives error:
if($('#account[' + iterati...
Hi,
Is there any solution in ASP.NET/C# or Jquery for writing math equations as MathML is not very well supported by browsers.
Thanks
...
Hi,
I want to achieve the really easy task to replace the head node of a page with the head node of the page called with an ajax call.
I do it like this:
url = 'http://myurl';
$.get(url, function(results){
var head = $('head', results);
$('head', results).each (
fun...
how to achieve this?
let's say that I have 3 dialogs A, B and C. I can work with them at the same time by having them one next to the other, drag them around, put them one on top of another, etc...
now, at some point, the B dialog opens a dialog X. I must still be able to work with dialogs A and C but I must not be able to work with B un...
On inserting the new <li>, I have to set the value of the button clicked to Delete. How can I do that?
With the actual code, it`s working only once, and on adding other list, the button no more has the the value 'Delete'.
$("#mylist :button").click( function() {
var text = $(this).val();
if (text == "Delete") {
...
In my JavaScript game (made with jQuery) I have player position stored in a database. When character is moving, i just send request to specyfic URL, I.E. mysite.com/map/x1/y3 (where a character's position is x=1, y=3).
That url send coordinates to the database and checks to see if any other players are near ours. If yes, it sends also...
Hello everyone!
My question is:
Is it possible to do an Ajax request WITHIN a click function, with jQuery? (see example below), If so, what am I doing wrong? Because I'm not being able to do any request (I'm alerting the data through my success function and nothing is being retrieved).
Thank you very much in advance for any help! :)
...
If I have valvo that obtain from database, How can I set volvo option status into active(checked) by using JQuery?
<select name="car">
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="mercedes">Mercedes</option>
<option value="audi">Audi</option>
</select>
I don't know how ...
Suppose that I have an ASP.NET page, where a customer can select a product from a drop down list, and then with this change event, corresponding price, quantity etc. fields are changed and set to appropriate values. These values are obtained from server-side asp.net page using jquery's "$.post(....)" method. Now in the same page, there i...
Hey,
I'm using jQuery Tools and their Overlay library. When i load an external page into an Overlay i can't click any of the links inside the Overlay. Anyone that bumped into this problem and perhaps have a solution?
The overlay itself works, it loads the external page, but as said, i cannot click the links.
...
I am trying to add filmstrip to the picture gallery using GalleryView plug-in, version 2.0. I have a problem that the specified pictures in filmstrip (thumbnail pictures) are displayed in a panel instead of the specified picture in div (class="panel").
As is evident from examples and documentation, custom filmstrip can be added in the f...
Hello!
I have 2 functions $.post jQuery, how to make the 2nd $.post carried out only after the loading of the first $.post completely finished?
But I can not use $.post within $.post because the second $.post called from flash
function play(id, file, dur, who, hname, artist, song)
{
if($.cookie('scrobb') == 'on')
{
setTi...