2
votes
2answers
25 views

how do I make an onclick perform two functions: show description and show video or picture

I am trying to figure out a way to click a button that will show a subsequant div. and then also show a related video. I need it to be scalable so that anything I add will automatically incorporate ...
0
votes
3answers
512 views

jQuery send value of hidden field on click event

I am using the following template to display data from the database. It is repeated and identical classes are used several times. I want to pass the value of the hidden field that is in that template ...
0
votes
4answers
93 views

JQuery code not working at a button click?

I have 3 buttons inside div's tages as below. <div id="make_larger"> <button type="button">Large</button> </div> <div id="make_small"> <button ...
0
votes
2answers
806 views

JavaScript window.close not firing after clicked on PrettyPhoto

JavaScript event onClick close window not firing after clicking and viewing PrettyPhoto image. HTML <button type="button" onClick="closeWin()">Close Window</button> JavaScript ...
0
votes
1answer
560 views

Value not getting selected from an Autocomplete on Mouse button click

I have a Jquery Autocomplete. Its working fine. Values are selected when i move up and down from keyboard arrow key or hover a mouse on a particular value. But when i press button to put my selected ...
1
vote
1answer
436 views

Ruby on Rails button click to populate text_field using jQuery

I am trying to populate a text_field on click of a button using jQuery and have a few questions. I posted a question about this here but wasn't sure about the answer provided as it seemed overly ...
1
vote
4answers
69 views

Why when initiating $.click() several times, and if the link is clicked once, it captures it more than once?

I have something like: function init(){ $('.btn').click(function(){ //do something; } } And when new content is added via ajax, I'm calling init(), so that click event applies to new ...
0
votes
3answers
466 views

changing the href or removing the onclick for a button

<a href="javascript:__doPostBack('btnContinuePhone','')" class="button-hpo blue-button-23" id="btnContinuePhone" onclick="javascript:return ...
1
vote
5answers
509 views

.click() not working. Jquery

In my login.aspx I am trying to perform simple client side validation (check Username and password fields are empty or not) on the click of the button. But the .click() in the jquery is not firing. ...
3
votes
4answers
3k views

same function for two buttons in jQuery

I have two buttons: btnAdd and btnUpdate. I have written a jquery function for button btnUpdate to validate some fields in the web page like: $(function() { $('#<%=btnUpdate.ClientID ...
22
votes
8answers
91k views

How to make a button redirect to another page using jQuery or just Javascript

I am making a prototype and I want the search button to link to a sample search results page. How do I make a button redirect to another page when it is clicked using jQuery.
2
votes
3answers
1k views

Click events on overlapping items

I have table row with click event button with click event, that button is on table row and I have problem. When I hit button, row click event execute too, but I don't want this behavior. I want ...