An event which occurs when user clicked an object. It is a combination of two events, that is, "onmousedown" followed by "onmouseup".

learn more… | top users | synonyms

1
vote
2answers
38 views

Click on a specefic view of a ListView Item

I have a ListView that displays a list of Items, each item contains multiple TextViews and ImageViews, As following: I have some lines of code that i want to be executed when i click on my ...
0
votes
0answers
17 views

Worklight 5.0.6 dojo 'onclick' event not working in chrome

When trying our worklight application in both firefox and chrome we noticed that on chrome the onclick event on an item of our EdgeToEdgeStoreList does not work. In Firefox the onclick event does ...
0
votes
2answers
21 views

Using jquery to load nivo slider on click inside Div?

I am trying to load nivo slider inside a div using jQuery: <a onclick='$("#content").load("slider/slider.html");'>Slider</a> But that doesn't work, if I use this script though, it ...
-1
votes
1answer
70 views

using PHP variable within onClick

I was wondering what is wrong with this tag I am using which uses a PHP variable within an onClick event. after looking around for other answers on this i have tried to do it but for some reason it ...
-2
votes
1answer
29 views

not working in IE. Working in FF, Chrome [closed]

I am creating website using JSF where I have below. <h:form prependId="false" enctype="multipart/form-data" id="addBODMeeting"> <h:inputText id="myDateHide" value="#{BODMeeting.myDateHide}" ...
-2
votes
3answers
51 views

How to execute mysql on button click [closed]

PHP: How would I execute SQL when a button is clicked? Would I do it with the JavaScript onClick() function, or some other way? I am trying to do this inside of a loop, and only execute the sql on the ...
-1
votes
1answer
25 views

jQuery href location with DIV effects [closed]

I'm looking for a solution to open a box in a nice effect and when a user clicks to go to another page (location.href or similar) then the boxes closes in the same style as it opened and then goes to ...
0
votes
1answer
25 views

ASP.NET MVC Multiple check box

models public class UserRoleViewModel { public UserRoleViewModel() { Roles = new List<RoleViewModel>(); } public string UserId { get; set; } public ...
-6
votes
0answers
72 views

How to add jquery click function? [closed]

i have this problem and i cant seem to figure it out. Maybe you could help me with a solution to my problem. I have this script with step1 step2 & step3, when the user gets to step 3 and clicks ...
0
votes
3answers
32 views

Android: Two buttons but the action from pressing one is only taking place after the other is pressed too

I have two buttons in my application, one is to to start Google Voice and the other is to exit the application. However, when I press the voice button, it doesn't do anything until after I press the ...
-2
votes
5answers
48 views

Android button onClickListener [closed]

I am making a button in Android Development. I have created button and I implemented OnClickListener method. My button fuction is to open another layout. What should I write in OnClick method, is ...
0
votes
1answer
24 views

commandButton doesn't set correctly f:param if it got a javascipt method in onclick event

Between two JSF views xhtmls (both have view scoped backing beans) I would like to pass parameters if the user click a link or a button. If I have an attribute onclick with a JavaScript function to ...
0
votes
3answers
29 views

How to get Usercontrol object 'X' from X's Button(i.e. Button inside the X) onclick event

Hello guys i am working on a Windows Form application in .Net C#. Now i have a User control with a button inside it. however i had to write the on-click handler in the main form rather than inside ...
0
votes
1answer
17 views

JQUERY Listen for click event

What i'm looking for is to have my container resize onclick. Inside the container are 2 panels that slide down with varied heights. I need the container to listen for the toggle function and resize ...
1
vote
1answer
29 views

Visual Basic-Excel copy only some column to other sheet

Is there any way to click and copy some value of some column to other sheet. This picture will explain more: Here is my code but it have some errors that i dont know why: Private Sub ...
0
votes
2answers
45 views

Change div id on click

I have a few 'headlines' which, when clicked, I would like for them to expand/change colour etc. I shtere any way of changing the div on click of one of the headlines so that whichever one I click ...
0
votes
1answer
47 views

Using JavasScript Onclick function to toggle visibility twice [closed]

My Code: <div> <a href="/forms/login-form.php" onclick="toggle_visibility('login-div'); return false;">Login</a> <div id="login-div"> <?php ...
1
vote
2answers
40 views

onclick does not work reliably

I have the following html. It is a pager which triggers actions on the server side using buttons with icons. The icons have an onclick event attached which is supposed to trigger a server URL (in the ...
0
votes
1answer
44 views
+100

Change image (svg) on click

I'm trying out Raphael + vectron, and i'm trying to change a svg image with a button click. This is (of course) not possible due to that when the svg is rendered it's rendered as path: <path ...
0
votes
3answers
33 views

Trying to add custom HTML to a lightbox

I'm trying to implement a lightbox in my website. I followed this tutorial, and it works fine. However, I want the lightbox to contain HTML code (such as tags). The way that the tutorial showed ...
1
vote
2answers
50 views

How to get url for linkbutton

I have a DataList, which are loaded in the search results(url, description, title). I need to know URL for which the user click on the search results. I do this using linkbutton. But OnClick handler ...
0
votes
2answers
52 views

VB click javascript button/img

Hi i am trying to click a button on a website with VB.NET The Command i use in .AHK is Pwb.document.getElementsByTagName("IMG")[7].click The button/Img HTML is below. <img width="34" ...
1
vote
1answer
28 views

Random sound onClick Android Medaplayer

I have got this code: @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); requestWindowFeature(Window.FEATURE_NO_TITLE); ...
1
vote
2answers
15 views

jQuery onclick count previous instances

I'm trying to click and instance of a class then count and alert the number of previous instances of that same class, currently it just seems to show all instances rather than the number before the ...
0
votes
0answers
35 views

Django, Different onclick on django radio

In a form, I have two radio select with two choices. Those radios are created with django form: class DrudForm(forms.ModelForm): class Meta: model = Drud widgets = { ...
1
vote
2answers
47 views

Calling server side method with parameter on click on a div inside a repeater

I have a page where I show the characters of a user. Using a repeater, I create a div for each character with different informations on the characters taken from my DB. I want to be able to call a ...
0
votes
3answers
32 views

How do I hide a div when its clicked and show another?

I have this query click function: <script type="text/javascript"> $(document).ready(function () { $('.show_hide').click(function () { $(".box").fadeIn(400); ...
1
vote
3answers
35 views

jQuery Dialog How to pass 'True' when button is clicked

My code below is working fine except when a button "Continue" is clicked it doesn't send a value of true. <script type="text/javascript"> function EmpDelete(f_name) { ...
0
votes
4answers
28 views

Changing text by clicking an image

I am a javascript noob. I want clicking on the images to change the text in a span What I have so far: Image: <img src="image.png" onclick="document.span[0].elements['videoTitle'].value = ...
1
vote
1answer
47 views

Jquery click event to target anchor not working in Firefox

I have a navigation menu that is targeting anchors that are positioned by the data-position attribute within a page. I'm using this code snippet to make this work, and it works great in Safari and ...
-1
votes
0answers
32 views

Is there a shorter/cleaner way of writing this set of jquery .onclick functions? [closed]

I am hiding and fading in different content on the same page using jquery to hide() and fadeIn() the content depending on which link is clicked. It works how I want it to, but the way I've written ...
0
votes
1answer
25 views

.NET CF Don't trigger button-click on return

I have a c# .net cf 3.5 application on windows mobile 6.5 On a form there are several buttons with onclick-events. How do I prevent the events from triggering, if they were sent by a return (on the ...
0
votes
0answers
16 views

ListView nest GridView

I nest a GridView in a ListView item to show the picture. There are three columns. When showing one picture, there is a large portion of margin on the right of picture. I click the margin it no ...
0
votes
0answers
25 views

Android background selector drawable intercepting onClick events?

I'm trying to make a phone button component with its letters on top and the number on bottom. I'm implementing it as a custom FrameLayout that uses a style that uses a selector drawable as background. ...
1
vote
3answers
24 views

how to detect an element that is clicked from many the same element

I have a lot of elements that have the same tags as follow: <ul> <li> <a>1</a> ... </li> <li> <a>2</a> ... </li> ...
0
votes
3answers
52 views

jQuery - catch <input type=“button” onclick location based on class

I have a button using the onclick fct : <input type="button" onclick="document.location = 'mylocation.html';" class="button urlToMainDiv" value="Back"> I would like to catch the called url ...
0
votes
0answers
28 views

jQuery .off('click') Prevent Jumping to Top

I have a check box that enables/disables a panel in my accordion. It currently works in the sense that it will expand the accordion when the checkbox is checked, and it will not expand when the ...
0
votes
1answer
52 views

onclick of radio button a dropdown should populate

I have following code for my advance search form. When I select a radio button against customer, drop down values should populate with customer data. <div class="container"> <%= form_tag ...
0
votes
4answers
39 views

JQuery: Can't removeClass when iterating (.each()) over list items using .on('click')

I am using JQuery to iterate over a ul list, and by using the .on('click'...) I want to add a class to the currently clicked li while removing it from the previously selected li jsFIDDLE here: ...
1
vote
4answers
61 views

JQuery: Iterate through an array by using on('click')

I am trying to get into JQuery but am struggling a bit around. What I'm trying to do is go through an array one click at a time so that each time I click on the "next" button a new item is ...
0
votes
1answer
46 views

Stuck with onblur event in IE8

When any text entered in text field, ( shown in an image )and if it is incorrect then it Open one alert box on ONBLUR event. It working fine in all browser except one, IE 8. In IE 8 when I am ...
0
votes
0answers
42 views

Actionscript 3 - how do I stop/pause a function?

I have a main menu page with a start button, then on the slideshow I have a restart button which goes to the main menu. How do I stop the slideshow when I go back to main menu? Right now I go back to ...
0
votes
0answers
50 views

“should not happen: no rect-based-test nodes found” error is thrown when click on an embedded svg shape

I got this error when I tap on an embedded svg shape. I load this html file from an Activity that extends DroidGap. In the html file, I embedded the svg and set an onclick event to one shape in the ...
0
votes
3answers
33 views

Append new html with a onclick event

I have this button: <button type="button" class="close" data-dismiss="modal" aria-hidden="true" name="kontakt" onClick="$(this).min('kontakt');">_</button> and this jQuery: $.fn.min = ...
0
votes
0answers
28 views

onClick on a links to display images with z-index on current page

So I'm trying to setup onClick on links to display different images right below that links (links menu). Each link is assigned to different image (four images). Images are grouped in one div below ...
1
vote
0answers
57 views

Android Multiple clickable strings in textview

I am creating a small Android app. I would like to display a text in a textview with multiple parts to click on. (Each should show some different message) Finally I managed to find out how to display ...
4
votes
1answer
76 views

Onclick Event Sometimes Doesn't Fire (IE6/IE7/IE8)

I noticed that sometimes IE6/IE7/IE8 don't always fire onclick events (from buttons when clicked). There seems to be a grace period of a couple of a seconds after the last onclick event has been ...
0
votes
3answers
47 views

Page moves when I click in image

I have a page with an image that would play a sound in clicking on it. But when i click my page goes down if I'm at the top and up if I'm at the bottom of the page, for whatever reason. I tried all ...
0
votes
2answers
43 views

JSF litener triggers buttons onclick

<h:form> <h:selectOneMenu value="#{productBean.productName}"> <f:selectItem itemValue="" itemLabel="..." /> <f:selectItems ...
0
votes
1answer
43 views

Unable to get onListItemClick functioning for a row in a ListActivity

I would like to get a click anywhere on the row of my ListActivity to proceed to another Activity. Currently, i am able to see the row position in a log when the ImageView is clicked, but the click ...

1 2 3 4 5 77