Looking For A Gallery Running On JavaScript And/or JQuery Like One Click To Many Showcase
Oct 29, 2010
To see the example visit the web page: spam 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.
View 1 Replies
Similar Messages:
Jan 13, 2011
I have added jquery gallery image plugin to my web site AD-Gallery
But the lower arrow buttons are not working both in IE and FF. When I moved the mouse over any one of it , an error box appeared in IE with this text
Webpage error details
User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)
Timestamp: Thu, 13 Jan 2011 22:39:31 UTC
Message: Object doesn't support this property or method
Line: 439
Char: 15
Code: 0
[URL]
And the code at line 439 in jquery.ad-gallery.js file is :
var left = context.thumbs_wrapper.scrollLeft() + 1;
why I'm getting this error and how can I get rid from this?
View 2 Replies
Jan 29, 2011
I need to create a slide Gallery on multiple rows (two) with jquery.There is already made some plugin, or can give me an example to be able to realize?
View 1 Replies
Feb 4, 2011
I'm using a lovely jQuery plugin to load static images into a thumbnail viewer - the locations are hard coded which doesn't serve us any use other than for a demo.
I've managed to pull the images from our server into a unique folder but I've no idea how to load the images dynamically to the plug in. This is the format for the images in the plug in.
[Code]....
The documentation says I can use a JSON array too:
[Code]....
But I don't know how to make this "dynamic". I have the filenames and folder location in C# in my code behind - no idea how to pass this to the jQuery plugin. I can collect the file names and pass to a new ASP page (ie no need to load from the current page).
View 3 Replies
Jan 13, 2011
i need to put an IFrame in my page, this iframe page include a link with text "logout", the link didnot has an ID or Name tags.
<a href="http://wwww.www.com/logout">Logout</a>
how can i click this link from outside this Iframe using javascript?
View 2 Replies
Nov 11, 2010
Im using the following code:
jQuery(document).ready(function () {
jQuery('<%= btnSave.ClientID %>').click(function(){
alert('world');
});
});
And when I click the asp.net button:
<asp:Button ID="btnSave" runat="server" Text="Save" OnClick="btnSave_Click" />
It just doesnt fire. Anybody know why?
View 3 Replies
Jun 1, 2010
Im developing a news site and I want to do a gallery like the one in this site :
[URL]
it's created with flash but I need to do it with jQuery or ajax
View 3 Replies
Jun 20, 2010
creat slide show gallery dynamic asp.net with JQuery
View 1 Replies
Jan 25, 2011
I have a linkbutton to which i am binding to the click event using jQuery, however the page still posts back no matter what i try...
According to this i should be able to use event.preventDefault However nothing seems to work and it always posts back, but i do get the alert
Here is my example
<asp:LinkButton runat="server" Text="TEST" ID="lnkTest"></asp:LinkButton>
<script>
$(document).ready(function () {
var lnk = $('#<%=this.lnkTest.ClientID %>');
lnk.unbind('click.test').bind('click.test', function (event) { alert("Click"); event.preventDefault(); event.stopPropagation(); return false; });
});
</script>
UPDATE
Okay after some further investigation it seems that this does work as expected when i run it in a standalone page, however we are using this script, and it appears that it is causing a conflict..
That script moves any href='javascript:... into the click handler, im guessing that the order the handlers are assigned may have something to do with it...
View 1 Replies
Feb 16, 2011
I have a pop-up div contains a table.
I need to make table rows clickable and can be catched by both js and .net server side .
how can I use Request.form to solve this issue? since I've created functions for js part .
The reason why I want to fire sever side event, because I use JS to add option (item) to an asp:ddl in an updatepanel, it will cause error or lose the new option by doing a postback fired by other buttons.
View 1 Replies
Jan 25, 2011
In a repeater control there is TextBox and corresponding to each TextBox there is Button control.On click of Button how can i pass TextBox's text that user has just entered ?
Below is the code:
[Code]....
Means on click of each Button how to pass there respective TextBox's data to a javascript function ?
View 17 Replies
Feb 21, 2014
I have a grid with 3 templetefield columns. Above that i have a checkbox list collection. i want to add no of rows equal to no of checkbox checked from list.
If I check 3 checkbox then 3 rows should be added to grid dynamically without postback.. I am trying to do it using javascript.
View 1 Replies
May 7, 2015
I want to determine Sigle click and Double click on any particular row (anywhere in the row) using javascript.Let's say I have some records in griview and when I click on any row it display the data of that row, and when I double click on any row it display the data of that row with "Hello" word.
View 1 Replies
Nov 22, 2015
I have a datalistÂ
<asp:DataList ID="ddlist_rooms" runat="server" RepeatColumns="1" RepeatLayout="Table">
<ItemTemplate>
<div>
<h3><span class="roomtype"><%# Eval("room_type") %></span>
</h3> </div>
<div><span class="rid" style="visibility: hidden"><%# Eval("id") %></span></div>
[Code] ...
In the above structure room information has been loaded now when I click on book now then I want to access the roomid room price to send it next panel.
I just want to know that how it is possible to access other values using jquery...
View 1 Replies
Jan 5, 2010
Besides stackoverflow, what are the best sites to showcase my development skills?
For those sites that are specific to a particular set of skills, I am a ASP.Net developer and I use c# primarily.
Edit:
Something to send potential employers, and something that they would find easily during a Google search of me.
View 7 Replies
Apr 4, 2010
Is there a sample application to demonstrate best practices for Asp.Net? I am looking for something like SharpArch (for Asp.Net)?
View 1 Replies
Jun 20, 2010
I have a LoginView element in an Update panel and use JQuery to hide the div containing the update panel when the cancel button(Html) is clicked.
It works fine normally. However, when I enter an invalid password and there is an error message displayed, the Javascript attached to the Cancel button click stops firing.
[code]....
View 2 Replies
Feb 4, 2011
I have the following inside of my Header Template of an Ajax Accordion:
[code]....
I need this to work without JS as well, which is why I still generate the HREF on the links, so I'm just intercepting the click and then invoking the parent click which in turn toggles the accordion header.
This works in IE but no Firefox, Chrome.
View 1 Replies
Sep 18, 2010
We need assistance with a portion of a major web application project scheduled to begin user testing within 10 days. The troublesome part of the code calls an external application when a button is clicked in Web page. When run from a command prompt or bat file, the external application, App.exe, runs perfectly producing the desired result. We created a test page and a small console application, Con.exe, to test the button code with a known quantity. The test application runs perfectly when the button in the Web page is clicked. However when we change the code to run App.exe instead of Con.exe, the App.exe code will not execute. We even tried creating a bat file to execute App.exe. Like the exe, the bat file executes from the command prompt or when double-clicked,but fails to run when called as a process from the button click event. Can anyone assist us? Here is the C# code: (.Net 3.5 sp1)
using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using System.Diagnostics;
namespace WebButtonTest
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
protected void Timer1_Tick(object sender, EventArgs e)
{
int checkNumber = 0;
if (Session["checkNumber"] != null).......
[Code....]
View 2 Replies
Aug 18, 2010
Well I have a button click event.. when i click on button its working fine.. but when i click on refresh its again going inside click event... which I dont want it to happen.
View 8 Replies
Apr 28, 2010
i want to retrieve the image from image gallery. and then i want to insert it and store in image gallery.
View 2 Replies
Aug 19, 2010
in my MVC 2 application, and in the shared Master Page I wrote this little script for menu handling :
<script src="../../Scripts/jquery-1.4.1.js" type="text/javascript"></script>
<script type="text/javascript"> $(document).ready(function () {
$('#nav li').hover(
[code]...
View 2 Replies
Dec 24, 2010
I have a link button in a repeater control. the li element is drag and droppable using jquery. when the page loads the the link button works perfectly, the jquery that is attached and the server side code both execute. when I perform a drag and drop then click on the link button it doesnt not fire. when i click it a second time it does fire. If i perform 2 or drag and drops in a row the link button doesnt fire a as many drag adn drops as i before it will fire. for example if if perform 3 drag and drops then it will take about 3 click before the events are fired.
[Code]....
View 4 Replies
Nov 18, 2010
I want to disable this script for twitter widget to be displayed on some pages. How can I access the script from the backend and change the url on runtime?
<script id="twitter" src="http://widgets.twimg.com/j/2/widget.js">
View 1 Replies
Apr 4, 2011
We have a timer process (a JQuery plugin) that redirects after X number of minutes to the login page, all via JavaScript. When the timer hits zero, I want to run a task (could be anything; however, in this specific scenario, it's a web service call).
So the process does:
if (zeroedOut) {
window.setTimeout(function() {
//Run finish-up processes
}, 0);
window.location = "login.aspx";
}
The issue I'm having is the web service that runs with the finish-up processes is not being called. The web service call happens, the redirect happens, I don't see any errors (I have try/catch statements around the setTimeout call), but no WS call.
View 1 Replies