Click here to Skip to main content
15,896,912 members

Comments by Hercal (Top 113 by date)

Hercal 24-Jan-16 4:54am View    
i mean is there any better solution instead of running the query every min ,
may be run it once a day and send mail at times specified in the query !
but don't know if it possible or not
Hercal 24-Jan-16 4:53am View    
unfortunately , i have sql server express which hasn't feature of sql server agent .
Hercal 21-May-15 10:43am View    
SA , what will u do in case u have url like. http://www.domainname.com/category/subcategory
so when someone enter this url
u need category to be clicked and subcategory clicked
keep in mind that the subcategories are rendered as html after category click

so in this case i use .click method , do u have another solution ?
Hercal 21-May-15 10:22am View    
so jquery is stupid ,
i thought that $('#id').click(); ==document.getelemntbyid('id)
but u show me that they are different .
thanks richard
Hercal 21-May-15 10:16am View    
Oh Richard ,
i get it now , read below please and tell me if u understand it right or not
by writing this

$('#btn1').click(function(){
$('#div1').append($("google "));
});

and then $('btn1').click(); i execute the function which is appending but button itself not clicked , Right ?