To see the example please visit the web page: http://www.youpluswephotography.com/
and click one photo you will see many photos appearing. How can I make it using JS or JQuery or what else? I will use .NET for active server pages.
...
I am coding a PHP MVC and I usually to have use AJAX. This MVC is XML based that is rendered with a XSLT stylesheet.
In my case I have a controller named AjaxController that controls all the AJAX petitions, here an example:
public function getMembersAction()
{
$group= $this->getPost("group");
$this->view->members = Members::ge...
Hello All,
I have div which has an onlcick event. Now when i click the div i want to change its onlick function with .click attribute of jquery. I am able to change it dynamically, but when i apply it the new event also gets fired. Is there any work around so that the new is not fired but just applied to the div with new function?
Here ...
i have 2 combobox A & B.. the values in B is populated according to selected value in A,, my code works fine when i click combo A and select a item,, the values according to it get populated on combo B. i have written it on the change event...
But when i use tab to navigate and select the items in combo A and change on pressing keyboar...
Hi,
I am using cakephp. And I have textarea field where users paste data, I using tinymce plugin to format text. I have warned users not to enter telephone number or email address inside the textarea. But, I dont want to take chances.
Is there a way I can extract the telephone number and email from textarea and replace it something li...
Hi,
I am trying to call one jsp files from Jquery-ajax call.
But, I can able to get only pure html. It is not loading any css files and js files while loading html. so html page is coming with out style sheets.
here, sample code updated
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<%@page language="java" conte...
I have a setup like this...
$(document).ready(function(){
var model = { /* some variable names */, Traits[] };
var traits = // json array pulled from server.
$('input[type=checkbox]').button(); // jquery ui button control.
});
Now, in my HTML, I have a jQuery Template like this.
{{each(i, trait) traits}}
<input type='check...
Hi, I am using the Jquery cycle plugin to create an announcements slideshow. I would like to pause the slideshow when the user clicks on one of the pager links. I have tried using the pagerClick function and attaching the pause function to the onclick event for the pager links, but neither worked. Can you help?
$('#highlights')
.after('...
I have a small jquery script:
$('.field').blur(function() {
$(this).next().children().hide();
});
The children that is hidden contains some links. This makes it impossible to click the links (because they get hidden). What is an appropriate solution to this?
this is as close as I have gotten:
$('.field').blur(function() {
...
how to give the fade in and fade out effect in embed tag and object Tag?
'<object width="140" height="185"><param name="movie" value="http://www.youtube.com/v/blsg_rRAg0I?fs=1&amp;hl=en_US"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http:...
So I am working with some jquery code to do a simple hide of a p and a show of a p. I am simple adding a class called showp and showing it while making sure the others are not shown by hiding them first. But I keep getting an error missing : after property ID. Any help would be greatly appreciated.
$(document).ready({
$("#phone"...
Ok, so you know when you're answering a question and are in the middle of typing it, and someone else posts an answer to your question and you get a little popup that says there is a new answer to the question? My question is how do you do that? I think I have the basic concept down... A question is answered, added to the database. The p...
regardless of parent/child-relations etc, how do I find the node closest above $(this) node with a certain property, for example class="field"?
...
Hello everyone,
I would like to know if there is a way to disable the current class from reloading the page with jQuery?
For example, when you are on the About page the current state for the About page doesn't allow the users to reload the page if they click on the link again. So, if you have some kind of animation it won't start over....
I have an included object's form:
<form method="post" class="object_form" id="event-core-form" action="{% url save_event_core_data event.id %}" enctype="multipart/form-data">
{{ form.as_p }}
<p>
<input class="object-submit" id="object-data-save" type="submit" value="Save data">
</p>
</form>
After hitting 'submit' b...
Hey folks... I am back with another issue...
I am using jquery Autocomplete on a form field. It works!
The issue is, then dynamically I add another row to the form, it doesn't. Yes, I keep toggle the id of the new field to a new one.
Original = exampassed1
Dynamically Added = exampassed2, exampassed3 and so on...
I have already add...
I am working on a script that has to build out DOM objects on the fly and I am having some issues with a tabular system that is attached to the injected DOM objects.
When the page is first loaded the first tab is shown and there is a next button. When the user clicks the next button the next step is shown. Well anything after the first ...
I have a panel hide/show setup that is triggered from a list item anchor. Works great. The problem is, I also have a dropdown menu in the site navigation that also needs to trigger each panel, from any page on the site. Like say, I have panels (in this order), "Hardware", "Software", "Accessories" on the Products page. So when I'm on the...
Looking at the other dialog questions, mine seems to be the exact opposite to postback queries. I have a dialog box which opens when a button is clicked. all that is fine. I have attached the dialog to the form and posting to asp.net is fine too, but, my problem is when a postback occurs of course the dialog closes which I do not want to...
I am calling a function that returns the result of an ajax GET request using jQuery.
How do you return its result through the function to the callee?
function makePrPoContent(s_firstName, s_lastName, s_email){
$.get('/includes/snippets/privacy_policy.jsp', {
firstName: s_firstName,
lastName: s_lastName,
email: s_e...