Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My friend done this below coding for custom control

<a href="javascript:__doPostBack('id','msg');">click</a>

now i want to show confirm dialog box while click this anchor link.

Is it possible?. i want to write script as inline.

share|improve this question
Create a function (e.g. confirm()) where you do your according stuff and call it from __doPostBack(). – Christoph Jun 21 '12 at 9:27
@Christoph There already is a confirm function in javascript. – dystroy Jun 21 '12 at 9:28
@dystroy If you want to use the standard ugly builtin confirm-dialog, yes. – Christoph Jun 21 '12 at 9:29
Using elegant confirm dialog is more work and requires some javascript/html/css knowledge. – dystroy Jun 21 '12 at 9:31

3 Answers

up vote 2 down vote accepted

Do this :

<a href="javascript:if (window.confirm('Really?')){__doPostBack('id','msg');};">click</a>

But at some point, you'd want to stop using only inline code and have a look at other clearer ways to add javascript in your code.

You may use a script block like this in the HEAD of your HTML file :

<script>
    function doOnClick(){
       if (window.confirm('Really?')){
           __doPostBack('id','msg');
       };
    }
</script>

And then your link becomes

<a href="javascript:doOnClick();">click</a>

Of course, this doesn't feel much simpler with only one function but it helps you put all your functions in the same place and make lighter and clearer html.


An alternative would be to use jQuery, so that you may totally avoid putting javascript in the html part.

The html is then

<a id=myLink>click</a>

And your script, now at the end of the body, is this one :

<script>
   $(document).ready(function(){
       $('#myLink').click(function(){
           if (window.confirm('Really?')){
               __doPostBack('id','msg');
           };
       });

       // other codes will come here
   });
</script>

You're not at all required to code it this way now, as you only have a very light function, but if your code grows I suggest you start considering it and look at the jquery tutorials.

share|improve this answer
thanks i want to write multi line in javascript like this '<a href="javascript:a=2;if(confirm('sdsd'))__doPostBack('id','START_EDIT');"> click </a>' is it possible? if i click cancel it behaves some thing weird – YogeshWaran Jun 21 '12 at 16:01
I added a lot of comments in my answer. I hope this helps. – dystroy Jun 21 '12 at 16:08

Of course. Here is a small snippet, not elegant but it works...

<a href="javascript:if(confirm('Do you really want to post?')) {__doPostBack('id','msg');};">click</a>
share|improve this answer

I actually had to look this up because I haven't used confirm, alert and prompt in a very long time.

confirm returns true/false depening on what the user selected (OK/Cancel, respectively).

So your resulting code would be

<a href="javascript:if (confirm('Are you sure?')) __doPostBack('id','msg');">click</a>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.